mirror of https://github.com/dapr/quickstarts.git
8 lines
349 B
C#
8 lines
349 B
C#
namespace WorkflowApp;
|
|
public class Constants
|
|
{
|
|
public const string DAPR_INVENTORY_COMPONENT = "inventory";
|
|
public const string DAPR_PUBSUB_COMPONENT = "shippingpubsub";
|
|
public const string DAPR_PUBSUB_REGISTRATION_TOPIC = "shipment-registration-events";
|
|
public const string SHIPMENT_REGISTERED_EVENT = "shipment-registered-event";
|
|
} |