You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
733 B
C#

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