123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Code.Attributes
- {
- [AttributeUsage(AttributeTargets.Field)]
- public class EnumDisplayAttribute : Attribute
- {
- public EnumDisplayAttribute(string displayStr)
- {
- Display = displayStr;
- }
- public string Display
- {
- get;
- private set;
- }
- }
- }
|