using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { /// /// 短信状态 /// public enum EnumSmsStatus { /// /// 待发送 /// Wait = 0, /// /// 发送中 /// InProcess = 10, /// /// 发送成功 /// Success = 20, /// /// 发送失败 /// Fail = 30, } }