using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobilePublicMessageTotalSendResponse.
///
public class AlipayMobilePublicMessageTotalSendResponse : AopResponse
{
///
/// 结果码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 消息ID
///
[JsonProperty("data")]
public string Data { get; set; }
///
/// 结果描述
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}