using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.DroneDocking.Request { public class AirPortStatusApply { public string deviceid { get; set; } public string onlinestate { get; set; } public double longitude { get; set; } public double latitude { get; set; } public double height { get; set; } public double elevation { get; set; } public double gimbal_pitch { get; set; } public double gimbal_ya { get; set; } public int battery_capacity_percent { get; set; } public int gps_state { get; set; } } }