Files
IM_NEW/IM.InitCommon/RabbitMqOptions.cs
2026-05-09 17:06:30 +08:00

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; }
}
}