步步为盈

11 lines
238 B

using System.Collections.Generic;
namespace BBWY.Client.Models
{
public class PurchaseOrderV2ListResponse
{
public long Count { get; set; }
public IList<PurchaseOrderV2Response> ItemList { get; set; }
}
}