using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PriceDetailDTO Data Structure.
///
[Serializable]
public class PriceDetailDTO : AopObject
{
///
/// 奖品领取跳转链接
///
[XmlElement("price_click_url")]
public string PriceClickUrl { get; set; }
///
/// 权益优惠信息
///
[XmlElement("price_title")]
public string PriceTitle { get; set; }
}
}