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