using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// UseRuleInfo Data Structure. /// [Serializable] public class UseRuleInfo : AopObject { /// /// 适用门店列表 /// [XmlArray("suitable_shops")] [XmlArrayItem("string")] public List SuitableShops { get; set; } /// /// 核销方式 /// [XmlArray("use_mode")] [XmlArrayItem("string")] public List UseMode { get; set; } } }