16 lines
339 B
C#
16 lines
339 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TBF.Rig.Network.Camera.CJMS11.POJO
|
|
{
|
|
public class SendImagesRequest
|
|
{
|
|
[JsonProperty("count")]
|
|
public int Count { get; set; }
|
|
|
|
[JsonProperty("delay")]
|
|
public int Delay { get; set; }
|
|
|
|
[JsonProperty("taskId")]
|
|
public string TaskId { get; set; }
|
|
}
|
|
} |