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