using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicMenuGetResponse. /// public class AlipayMobilePublicMenuGetResponse : AopResponse { /// /// success /// [XmlElement("code")] public string Code { get; set; } /// /// 菜单内容 /// [XmlElement("menu_content")] public string MenuContent { get; set; } /// /// 成功 /// [XmlElement("msg")] public string Msg { get; set; } } }