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 zoneCodes { get; set; } public string autoShutdown { get; set; } public string bootTime { get; set; } public string expireTime { get; set; } public object extra { get; set; } } }