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.

17 lines
550 B
C#

namespace Sln.Wcs.HikRoBotSdk.Dto.SiteBind
{
public class SiteBindDto
{
public string slotCategory { get; set; }
public string slotCode { get; set; }
public string carrierCategory { get; set; }
public string carrierType { get; set; }
public string carrierCode { get; set; }
public int? carrierDir { get; set; }
public string invoke { get; set; }
public string stackLabel { get; set; }
public int? colCount { get; set; }
public object extra { get; set; }
}
}