12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace Ips.Library.Entity
- {
- /// <summary>
- /// 卫星类型
- /// </summary>
- public enum SatType
- {
- /// <summary>
- /// 高轨卫星
- /// </summary>
- [Description("高轨卫星")]
- HighOrbit = 0,
- /// <summary>
- /// 低轨卫星
- /// </summary>
- [Description("低轨卫星")]
- LowOrbit = 1,
- /// <summary>
- /// 战术星
- /// </summary>
- [Description("战术星")]
- WarSat = 10,
- /// <summary>
- /// 其它
- /// </summary>
- [Description("其它类型")]
- Other = 9999
- }
- }
|