using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CardPromoDO Data Structure. /// [Serializable] public class CardPromoDO : AopObject { /// /// 卡片Id /// [XmlElement("card_id")] public string CardId { get; set; } /// /// 卡片星级 /// [XmlElement("card_level")] public long CardLevel { get; set; } /// /// 是否限时权益 /// [XmlElement("limit")] public bool Limit { get; set; } /// /// 权益图标 /// [XmlElement("promo_icon")] public string PromoIcon { get; set; } /// /// 权益名称 /// [XmlElement("promo_title")] public string PromoTitle { get; set; } /// /// 用户是否领取了该权益 /// [XmlElement("received")] public bool Received { get; set; } /// /// 目标打卡次数,打卡target_mark_count天可以获取该权益 /// [XmlElement("target_mark_count")] public long TargetMarkCount { get; set; } } }