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.
22 lines
599 B
C#
22 lines
599 B
C#
using System.Collections.Generic;
|
|
using Sln.Wcs.HikRoBotSdk.Dto.Common;
|
|
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.TaskGroup
|
|
{
|
|
public class TaskGroupDto
|
|
{
|
|
public string groupCode { get; set; }
|
|
public string strategy { get; set; }
|
|
public string strategyValue { get; set; }
|
|
public int? groupSeq { get; set; }
|
|
public TargetRoute targetRoute { get; set; }
|
|
public List<TaskGroupDataItem> data { get; set; }
|
|
}
|
|
|
|
public class TaskGroupDataItem
|
|
{
|
|
public string robotTaskCode { get; set; }
|
|
public int? sequence { get; set; }
|
|
}
|
|
}
|