- using System.Collections.Generic;
- namespace GxPress.EnumConst
- {
- /// <summary>
- /// 有选项的字段类型
- /// </summary>
- public static class EnumConstUtils
- {
- public static readonly List<FieldTypeConst> FieldTypes = new List<FieldTypeConst>
- {
- FieldTypeConst.Radio
- };
- }
- }
|