using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core.Enum;
///
/// 推送状态
///
[Description("推送状态")]
public enum PushStatusEnum
{
///
/// 未推送
///
[Description("未推送")]
NotPush = 0,
///
/// 推送中
///
[Description("推送中")]
Pushing = 1,
///
/// 推送成功
///
[Description("推送成功")]
PushSuccess = 2,
///
/// 推送失败
///
[Description("推送失败")]
PushFail = 3,
}