namespace Nocr.TextMatcher.Core.Options;
public sealed class RebusRabbitMqOptions
{
///
/// Строка подключение
///
public string ConnectionString { get; set; }
///
/// Имя входящей очереди
///
public string InputQueueName { get; set; }
///
/// Имя direct exchange
///
public string DirectExchangeName { get; set; }
///
/// Имя topics exchange
///
public string TopicsExchangeName { get; set; }
///
/// Список подписок
///
public string[] Subscriptions { get; set; } = Array.Empty();
}