using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ValidDateInfo Data Structure. /// [Serializable] public class ValidDateInfo : AopObject { /// /// 截至时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 相对有效期 /// [XmlElement("relative_time")] public PeriodInfo RelativeTime { get; set; } /// /// 开始时间 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 时间模式,RELATIVE=相对时间,RELATIVE=绝对模式 /// [XmlElement("time_mode")] public string TimeMode { get; set; } } }