LASAPlatform/OpenAuth.App/ServiceApp/Request/DeviceStatusReq.cs

23 lines
681 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Request
{
public class DeviceStatusReq
{
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_yaw { get; set; }
public int battery_capacity_percent { get; set; }
public int gps_state { get; set; }
}
}