using Plane.Geography; namespace Plane.Copters { /// /// 定义物体可见的状态。 /// public interface IVisibleStatus : ILocation, IAttitude { /// /// 获取名称。 /// string Name { get; set; } } }