Plane.Sdk3/PlaneGcsSdk.Contract_Shared/Copters/ICopterCommunication.cs

16 lines
373 B
C#
Raw Permalink Normal View History

2017-02-27 02:02:19 +08:00
using Plane.Communication;
namespace Plane.Copters
{
/// <summary>
/// 定义与通信相关的属性。
/// </summary>
public interface ICopterCommunication
{
/// <summary>
/// 获取或设置用于与飞行器通信的 <see cref="IConnection"/> 实例。
/// </summary>
IConnection Connection { get; set; }
}
}