meysamhadeli b4d475aebc - add test container for rabbitmq in test base
- refactor all tests
2022-11-28 02:09:19 +03:30

11 lines
278 B
C#

namespace BuildingBlocks.MassTransit;
public class RabbitMqOptions
{
public string HostName { get; set; }
public string ExchangeName { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public ushort? Port { get; set; }
}