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.

17 lines
440 B
C#

namespace OpenAuth.App.ServiceApp.FlyTask.Response;
public class CommandVideoResponse
{
public bool issuccess { get; set; }
public byte[] imgBlob { get; set; }
public VideoExtData spkzxx { get; set; }
public string videoLink { get; set; }
}
public class VideoExtData
{
public float? lon { get; set; }
public float? lat { get; set; }
public float? angle { get; set; }
public float? height { get; set; }
}