16 lines
357 B
C#
16 lines
357 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TBF.Rig.Network.Camera.CJMS11.POJO
|
|
{
|
|
public class SendSummaryPayload
|
|
{
|
|
[JsonProperty("delay")]
|
|
public int Delay { get; set; }
|
|
|
|
[JsonProperty("pic_count")]
|
|
public int PictureCount { get; set; }
|
|
|
|
[JsonProperty("timeStamp")]
|
|
public string TimeStamp { get; set; }
|
|
}
|
|
} |