using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobileBeaconDeviceQueryResponse. /// public class AlipayMobileBeaconDeviceQueryResponse : AopResponse { /// /// 蓝牙设备信息 /// [JsonProperty("beacon_device_info")] public BeaconDeviceInfo BeaconDeviceInfo { get; set; } /// /// 操作返回码,200为成功 /// [JsonProperty("code")] public string Code { get; set; } /// /// 请求处理结果 /// [JsonProperty("msg")] public string Msg { get; set; } } }