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.
18 lines
540 B
C#
18 lines
540 B
C#
|
3 weeks ago
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.ZoneBanish
|
||
|
|
{
|
||
|
|
public class ZoneBanishDto
|
||
|
|
{
|
||
|
|
public string zoneCode { get; set; }
|
||
|
|
public List<string> zoneCodes { get; set; }
|
||
|
|
public string targetZoneCode { get; set; }
|
||
|
|
public string pause { get; set; }
|
||
|
|
public string report { get; set; }
|
||
|
|
public string controlMode { get; set; }
|
||
|
|
public string expireTime { get; set; }
|
||
|
|
public string invoke { get; set; }
|
||
|
|
public object extra { get; set; }
|
||
|
|
}
|
||
|
|
}
|