using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OpenPromoPrizeRelativeTime Data Structure. /// [Serializable] public class OpenPromoPrizeRelativeTime : AopObject { /// /// 时间维度, MI:表示 分 H:表示 时 D:表示 日 W:表示 周 M:表示 月 /// [XmlElement("dimension")] public string Dimension { get; set; } /// /// 相对值 /// [XmlElement("value")] public string Value { get; set; } } }