using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobileBeaconDeviceDeleteResponse. /// public class AlipayMobileBeaconDeviceDeleteResponse : AopResponse { /// /// 操作返回码 /// [XmlElement("code")] public string Code { get; set; } /// /// 请求处理结果 /// [XmlElement("msg")] public string Msg { get; set; } } }