12 lines
399 B
C#
12 lines
399 B
C#
namespace Birdmap.BLL.Options
|
|
{
|
|
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);
|
|
}
|