16 lines
397 B
C#
16 lines
397 B
C#
namespace Tnb.QcMgr.Entities
|
|
{
|
|
public class CheckItemOut
|
|
{
|
|
public string? checktypeid { get; set; }
|
|
public string? checktypename { get; set; }
|
|
public List<CheckItem>? items { get; set; }
|
|
}
|
|
public class CheckItem
|
|
{
|
|
public string? itemid { get; set; }
|
|
public string? name { get; set; }
|
|
public string? code { get; set; }
|
|
}
|
|
}
|