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