using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicMenuQueryResponse. /// public class AlipayMobilePublicMenuQueryResponse : AopResponse { /// /// 所有菜单列表json串 /// [XmlElement("all_menu_list")] public string AllMenuList { get; set; } /// /// 结果码 /// [XmlElement("code")] public string Code { get; set; } /// /// 结果描述 /// [XmlElement("msg")] public string Msg { get; set; } } }