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