mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
11 lines
278 B
C#
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; }
|
|
}
|