123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Enums
- {
- /// <summary>
- /// FAQ可见范围
- /// </summary>
- public enum EnumQuestionVisableRange
- {
- /// <summary>
- /// 全部可见
- /// </summary>
- [Description("全部可见")]
- All = 1,
- /// <summary>
- /// 管理员可见
- /// </summary>
- [Description("管理员可见")]
- Admin = 2
- }
- }
|