using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayMobilePublicLabelQueryResponse. /// public class AlipayMobilePublicLabelQueryResponse : AopResponse { /// /// 结果码 /// [XmlElement("code")] public string Code { get; set; } /// /// 所有标签 /// [XmlArray("labels")] [XmlArrayItem("string")] public List Labels { get; set; } /// /// 结果信息 /// [XmlElement("msg")] public string Msg { get; set; } } }