| 12345678910111213141516 |
- namespace Admin.NET.Core;
- /// <summary>
- /// 常量特性
- /// </summary>
- [SuppressSniffer]
- [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
- public class ConstAttribute : Attribute
- {
- public string Name { get; set; }
- public ConstAttribute(string name)
- {
- Name = name;
- }
- }
|