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.

16 lines
451 B
C#

using System.Collections.Generic;
namespace Sln.Wcs.HikRoBotSdk.Dto.ZoneHoming
{
public class ZoneHomingDto
{
public string mapCode { get; set; }
public string zoneCode { get; set; }
public List<string> zoneCodes { get; set; }
public string autoShutdown { get; set; }
public string bootTime { get; set; }
public string expireTime { get; set; }
public object extra { get; set; }
}
}