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