using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobileBeaconDeviceAddResponse. /// public class AlipayMobileBeaconDeviceAddResponse : AopResponse { /// /// 请求操作成功与否,200为成功 /// [XmlElement("code")] public string Code { get; set; } /// /// 请求的处理结果 /// [XmlElement("msg")] public string Msg { get; set; } } }