using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ItemPackageInfo Data Structure. /// [Serializable] public class ItemPackageInfo : AopObject { /// /// 商品详情-套餐内菜品信息列表 /// [JsonProperty("item_units")] public List ItemUnits { get; set; } /// /// 商品详情-套餐标题。最多不超过15个汉字,30个字符 /// [JsonProperty("title")] public string Title { get; set; } } }