using Plane.Communication; namespace Plane.Copters { /// /// 定义与通信相关的属性。 /// public interface ICopterCommunication { /// /// 获取或设置用于与飞行器通信的 实例。 /// IConnection Connection { get; set; } } }