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

10 lines
211 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
{
2017-02-27 02:02:19 +08:00
}
}