1234567891011121314151617181920 |
- using System;
- namespace VCommon.Reflection
- {
- /// <summary>
- /// 导出枚举元数据
- /// </summary>
- [AttributeUsage(AttributeTargets.Enum)]
- public class EnumMetaExportAttribute : Attribute
- {
- public EnumMetaExportAttribute(string exportName = null, bool manually = false)
- {
- ExportName = exportName;
- Manually = manually;
- }
- public string ExportName { get; }
- public bool Manually { get; }
- }
- }
|