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

10 lines
247 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
using System.ComponentModel;
namespace Plane.Copters
{
2019-12-11 20:40:30 +08:00
public partial interface ICopter : ICopterStatus, ICopterEvents, ICopterVirtualId, ICopterActions, ICopterCommunication, INotifyPropertyChanged, ICopterAttribute
2017-02-27 02:02:19 +08:00
{
2017-02-27 02:02:19 +08:00
}
}