using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobileBeaconDeviceModifyResponse. /// public class AlipayMobileBeaconDeviceModifyResponse : AopResponse { /// /// 返回的操作码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 操作结果说明 /// [JsonProperty("msg")] public string Msg { get; set; } } }