// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995 // // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证 namespace Admin.NET.Core; /// /// 事件总线配置选项 /// public sealed class EventBusOptions : IConfigurableOptions { /// /// RabbitMQ /// public RabbitMQSettings RabbitMQ { get; set; } } /// /// RabbitMQ /// public sealed class RabbitMQSettings { /// /// 账号 /// public string UserName { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// 主机 /// public string HostName { get; set; } /// /// 端口 /// public int Port { get; set; } }