using System.Collections.Generic; namespace Sln.Wcs.HikRoBotSdk.Dto.Common { public class TargetRoute { public string type { get; set; } public string code { get; set; } public string operation { get; set; } public string robotType { get; set; } public List robotCode { get; set; } public ExtraInfo extra { get; set; } } public class AngleInfo { public string type { get; set; } public string code { get; set; } } public class CarrierInfo { public string carrierType { get; set; } public string carrierCode { get; set; } public int? layer { get; set; } } public class ExtraInfo { public AngleInfo angleInfo { get; set; } public List carrierInfo { get; set; } public string crossVisionDoor { get; set; } public string pickStationCode { get; set; } } }