namespace Tnb.QcMgr.Entities { public class CheckItemOut { public string? checktypeid { get; set; } public string? checktypename { get; set; } public List? items { get; set; } } public class CheckItem { public string? itemid { get; set; } public string? name { get; set; } public string? code { get; set; } } }