using System.Collections.Generic; namespace BBWYB.Client.Models { public class OrderCostDetailGroup { public OrderCostDetailGroup() { Items = new List(); } public string SkuId { get; set; } public IList Items { get; set; } } }