using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace HKLib.RabbitMQ.Config { public enum MQEnum { /// /// 订阅模式 /// [Description("订阅模式")] Sub = 10, /// /// 推送模式 /// [Description("推送模式")] Push = 20, /// /// 主路由模式 /// [Description("主路由模式")] Top = 30 } }