using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// SupportFunction Data Structure.
///
[Serializable]
public class SupportFunction : AopObject
{
///
/// 卡名称
///
[XmlElement("card_name")]
public string CardName { get; set; }
///
/// 卡类型编码,为智能卡系统的内部编码规则
///
[XmlElement("card_type")]
public string CardType { get; set; }
///
/// 功能,支持开卡(issue),圈存(load),充值转账(recharge)
///
[XmlArray("function_type")]
[XmlArrayItem("string")]
public List FunctionType { get; set; }
///
/// 智能卡的跳转地址
///
[XmlElement("goto_url")]
public string GotoUrl { get; set; }
}
}