using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobileBeaconDeviceAddResponse. /// public class AlipayMobileBeaconDeviceAddResponse : AopResponse { /// /// 请求操作成功与否,200为成功 /// [JsonProperty("code")] public string Code { get; set; } /// /// 请求的处理结果 /// [JsonProperty("msg")] public string Msg { get; set; } } }