123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.String.Enums
- {
- /// <summary>
- /// 允许标识
- /// </summary>
- public enum EnumAllowFlag
- {
- [Description("不允许")]
- NoAllow,
- [Description("允许")]
- Allow,
- }
- }
|