Mark van Renswoude
2755e93440
- Upgrade to .NET 5 - Split functionality into libraries - Tabbed interface for multiple subscribers - Placeholder for publishing tab
20 lines
792 B
C#
20 lines
792 B
C#
namespace PettingZoo.RabbitMQ
|
|
{
|
|
public 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";
|
|
}
|
|
}
|