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