namespace QYZH.InteractiveMagazine.Models.Settings; /// /// RabbitMQ配置 /// public class RabbitMQSettings { /// /// 主机地址 /// public string? HostName { get; set; } /// /// 端口 /// public int Port { get; set; } /// /// 用户名 /// public string? UserName { get; set; } /// /// 密码 /// public string? Password { get; set; } /// /// 虚拟主机 /// public string? VirtualHost { get; set; } }