using BBWY.Server.Model.Db; using System.Collections.Generic; namespace BBWY.Server.Model.Dto { public class PurchaseOrderV2Response : PurchaseOrderV2 { public IList ItemList { get; set; } } public class PurchaseOrderV2ListResponse { public long Count { get; set; } public IList ItemList { get; set; } } }