birbmap/Birdmap.BLL/Options/RabbitMqClientOptions.cs

12 lines
399 B
C#
Raw Normal View History

2021-01-16 15:23:10 +01:00
namespace Birdmap.BLL.Options
{
2021-01-17 16:45:11 +01:00
public record RabbitMqClientOptions(
string Hostname, int Port, string VirtualHost,
string Username, string Password,
string ExchangeName, string ExchangeType,
bool ExchangeDurable, bool ExchangeAutoDelete,
string QueueName,
bool QueueDurable, bool QueueAutoDelete, bool QueueExclusive,
string Topic);
2021-01-16 15:23:10 +01:00
}