using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RecommendCard Data Structure.
///
[Serializable]
public class RecommendCard : AopObject
{
///
/// 卡名称
///
[XmlElement("card_name")]
public string CardName { get; set; }
///
/// 卡的推荐理由,非必须项
///
[XmlElement("card_recommend_reason")]
public string CardRecommendReason { get; set; }
///
/// 卡类型,非必须项
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 卡类目1,非必须项
///
[XmlElement("cate_1")]
public string Cate1 { get; set; }
///
/// 卡类目2,非必须项
///
[XmlElement("cate_2")]
public string Cate2 { get; set; }
///
/// 卡类目3,非必须项
///
[XmlElement("cate_3")]
public string Cate3 { get; set; }
}
}