using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// UseRuleInfo Data Structure. /// [Serializable] public class UseRuleInfo : AopObject { /// /// 适用门店列表 /// [JsonProperty("suitable_shops")] public List SuitableShops { get; set; } /// /// 核销方式 /// [JsonProperty("use_mode")] public List UseMode { get; set; } } }