using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// GetRuleInfo Data Structure. /// [Serializable] public class GetRuleInfo : AopObject { /// /// 截至时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 发放次数限制 /// [XmlElement("get_count_limit")] public PeriodInfo GetCountLimit { get; set; } /// /// 开始时间 /// [XmlElement("start_time")] public string StartTime { get; set; } } }