using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOpenAuthIndustryPlatformCreateTokenResponse. /// public class AlipayOpenAuthIndustryPlatformCreateTokenResponse : AopResponse { /// /// 授权码 /// [XmlElement("auth_code")] public string AuthCode { get; set; } /// /// appid /// [XmlElement("requst_app_id")] public string RequstAppId { get; set; } /// /// scope /// [XmlElement("scope")] public string Scope { get; set; } } }