12 lines
292 B
C#
12 lines
292 B
C#
namespace IM.InitCommon
|
|
{
|
|
public class RabbitMqOptions
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string QuequeName { get; set; }
|
|
}
|
|
}
|