AdClockType.cs 589 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace Ips.Library.Entity
  6. {
  7. /// <summary>
  8. /// 时钟类型
  9. /// </summary>
  10. public enum AdClockType
  11. {
  12. /// <summary>
  13. /// 内时钟
  14. /// </summary>
  15. [Description("内时钟")]
  16. In = 0,
  17. /// <summary>
  18. /// 外时钟
  19. /// </summary>
  20. [Description("外时钟")]
  21. Out = 1,
  22. /// <summary>
  23. /// 外参考
  24. /// </summary>
  25. [Description("外参考")]
  26. OutRef = 2
  27. }
  28. }