DynamicApiAttribute.cs 530 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace ZR.Common.DynamicApiSimple
  3. {
  4. /// <summary>
  5. /// 动态api属性
  6. /// </summary>
  7. public class DynamicApiAttribute : Attribute
  8. {
  9. public string Name;
  10. public string Order;
  11. public string Description;
  12. public DynamicApiAttribute()
  13. {
  14. }
  15. public DynamicApiAttribute(string _name, string _order, string _description)
  16. {
  17. Name = _name;
  18. Order = _order;
  19. Description = _description;
  20. }
  21. }
  22. }