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