using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 短信通知类型 /// public enum SmsNotificationType { /// /// 消费成功 /// [Description("消费成功")] ConsumptionSuccess = 1, /// /// 预约成功 /// [Description("预约成功")] PreOrderSuccess = 2, /// /// 充值成功 /// [Description("充值成功")] RechargeSuccess = 3, /// /// 服务完成 /// [Description("服务完成")] ServiceFinish = 4 } }