using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// HelloBikePriceResultItem Data Structure.
///
[Serializable]
public class HelloBikePriceResultItem : AopObject
{
///
/// 优惠卡类型,枚举值为 mcard,qcard,hycard,ycard,tcard
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 排序优先级,数字越小,优先级越高,没有经过排序的卡类型默认返回-1
///
[XmlElement("priority")]
public string Priority { get; set; }
///
/// 推荐价格,单位为分
///
[XmlElement("promo_price_cent")]
public long PromoPriceCent { get; set; }
}
}