using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicMessagebatchPushResponse. /// public class AlipayMobilePublicMessagebatchPushResponse : AopResponse { /// /// 成功 /// [JsonProperty("code")] public string Code { get; set; } /// /// 消息ID /// [JsonProperty("data")] public string Data { get; set; } /// /// 成功 /// [JsonProperty("msg")] public string Msg { get; set; } } }