using System.ComponentModel;
namespace QYZH.InteractiveMagazine.Models.Enum;
///
/// 点读文件明细状态枚举
///
public enum DotFileDetailStatusEnum
{
///
/// 待处理
///
[Description("待处理")]
Pending = 0,
///
/// 处理中
///
[Description("处理中")]
Processing = 1,
///
/// 成功
///
[Description("成功")]
Success = 2,
///
/// 失败
///
[Description("失败")]
Failed = 3,
///
/// 已取消
///
[Description("已取消")]
Cancelled = 4
}