步步为盈

17 lines
330 B

3 years ago
using System.Collections.Generic;
namespace BBWY.Client.Models
{
public class OrderCostDetailGroup
{
public OrderCostDetailGroup()
{
Items = new List<OrderCostDetail>();
}
public string SkuId { get; set; }
public IList<OrderCostDetail> Items { get; set; }
}
}