using System; namespace VCommon.Reflection { /// /// 导出枚举元数据 /// [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; } } }