20 lines
782 B
C#
20 lines
782 B
C#
|
namespace PettingZoo.Model
|
|||
|
{
|
|||
|
static class RabbitMQProperties
|
|||
|
{
|
|||
|
public const string ContentType = "content-type";
|
|||
|
public const string ContentEncoding = "content-encoding";
|
|||
|
public const string DeliveryMode = "delivery-mode";
|
|||
|
public const string Priority = "priority";
|
|||
|
public const string CorrelationId = "correlation-id";
|
|||
|
public const string ReplyTo = "reply-to";
|
|||
|
public const string Expiration = "expiration";
|
|||
|
public const string MessageId = "message-id";
|
|||
|
public const string Timestamp = "timestamp";
|
|||
|
public const string Type = "type";
|
|||
|
public const string UserId = "user-id";
|
|||
|
public const string AppId = "app-id";
|
|||
|
public const string ClusterId = "cluster-id";
|
|||
|
}
|
|||
|
}
|