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

9 lines
203 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
using System.ComponentModel;
namespace Plane.Copters
{
public partial interface ICopter : ICopterStatus, ICopterEvents, ICopterActions, ICopterCommunication, INotifyPropertyChanged
{
}
}