You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
750 B
C#

namespace OpenAuth.App.ServiceApp.FlyTask.Response;
public class CommandPictureResponse
{
public bool Issuccess { get; set; }
public byte[] imgBlob { get; set; }
public ExtData zpkzxx { get; set; }
public string pictureLink { get; set; }
}
public class ExtData
{
public float? lon { get; set; }
public float? lat { get; set; }
public float? yaw { get; set; }
public int pitch { get; set; }
public int roll { get; set; }
public DateTime? time { get; set; }
public double? height { get; set; }
public long imgWidth { get; set; }
public long imgHeight { get; set; }
public long imgOriginWidth { get; set; }
public long imgOriginHeight { get; set; }
public double? psjj { get; set; }
}