using System.ComponentModel;
namespace Hotline.Share.Enums.KnowledgeBase;
///
/// 知识状态
///
public enum EKnowledgeStatus
{
///
/// 草稿
///
[Description("草稿")]
Drafts = 0,
///
/// 审批中
///
[Description("审批中")]
Auditing = 1,
///
/// 失败
///
[Description("失败")]
Failed = 2,
///
/// 已上架
///
[Description("已上架")]
OnShelf = 3,
///
/// 已下架
///
[Description("已下架")]
OffShelf = 4,
///
/// 已驳回
///
[Description("已驳回")]
Revert = 5,
///
/// 已过期
///
[Description("已过期")]
Overdue = 6,
}