using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// IsvCyclePropertyTimeModel Data Structure. /// [Serializable] public class IsvCyclePropertyTimeModel : AopObject { /// /// 日期 /// [XmlElement("date")] public string Date { get; set; } /// /// * 周期属性时间类型 WEEK("WEEK", "星期"), DATE("DATE", "日期"), /// [XmlElement("time_type")] public string TimeType { get; set; } /// /// 星期 /// [XmlElement("week")] public string Week { get; set; } } }