using System.ComponentModel; namespace QYZH.InteractiveMagazine.Models.Enum; /// /// 管理员类型枚举 /// public enum AdminUserTypeEnum { /// /// 编辑员 /// [Description("编辑员")] Editor = 2, /// /// 超级管理员 /// [Description("超级管理员")] SuperAdmin = 0, /// /// 管理员 /// [Description("管理员")] Admin = 1 }