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.

30 lines
666 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicMessageTotalSendResponse.
/// </summary>
public class AlipayMobilePublicMessageTotalSendResponse : AopResponse
{
/// <summary>
/// 结果码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 消息ID
/// </summary>
[XmlElement("data")]
public string Data { get; set; }
/// <summary>
/// 结果描述
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
}
}