using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// CityFunction Data Structure. /// [Serializable] public class CityFunction : AopObject { /// /// 城市标准编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 描述功能,支持开卡(issue),圈存(load),充值转账(recharge) /// [XmlArray("function_type")] [XmlArrayItem("string")] public List FunctionType { get; set; } } }