37 lines
950 B
C#
37 lines
950 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TBF.Rig.Network.Camera.CJMS11.POJO
|
|
{
|
|
public class SendImagePayload
|
|
{
|
|
[JsonProperty("frameGap")]
|
|
public int FrameGap { get; set; }
|
|
|
|
[JsonProperty("frameTime")]
|
|
public string FrameTime { get; set; }
|
|
|
|
[JsonProperty("frameTimeMillis")]
|
|
public long FrameTimeMillis { get; set; }
|
|
|
|
[JsonProperty("pictureBase64")]
|
|
public string PictureBase64 { get; set; }
|
|
|
|
[JsonProperty("picturesComplete")]
|
|
public int PicturesComplete { get; set; }
|
|
|
|
[JsonProperty("status")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty("taskId")]
|
|
public string TaskId { get; set; }
|
|
|
|
[JsonProperty("taskPath")]
|
|
public string TaskPath { get; set; }
|
|
|
|
[JsonProperty("taskTime")]
|
|
public string TaskTime { get; set; }
|
|
|
|
[JsonProperty("workerId")]
|
|
public int WorkerId { get; set; }
|
|
}
|
|
} |