SatType.cs 734 B

12345678910111213141516171819202122232425262728293031323334
  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 SatType
  11. {
  12. /// <summary>
  13. /// 高轨卫星
  14. /// </summary>
  15. [Description("高轨卫星")]
  16. HighOrbit = 0,
  17. /// <summary>
  18. /// 低轨卫星
  19. /// </summary>
  20. [Description("低轨卫星")]
  21. LowOrbit = 1,
  22. /// <summary>
  23. /// 战术星
  24. /// </summary>
  25. [Description("战术星")]
  26. WarSat = 10,
  27. /// <summary>
  28. /// 其它
  29. /// </summary>
  30. [Description("其它类型")]
  31. Other = 9999
  32. }
  33. }