14 lines
405 B
C#
14 lines
405 B
C#
|
|
namespace QYZH.InteractiveMagazine.Infrastructure.RabbitMQ
|
|||
|
|
{
|
|||
|
|
public class RabbitMQOptions
|
|||
|
|
{
|
|||
|
|
public string UserName { get; set; }
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
public string HostName { get; set; }
|
|||
|
|
public int Port { get; set; }
|
|||
|
|
public string ExchangeName { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public string VirtualHost { get; set; } = "/";
|
|||
|
|
}
|
|||
|
|
}
|