using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenAuthIndustryPlatformCreateTokenResponse. /// public class AlipayOpenAuthIndustryPlatformCreateTokenResponse : AopResponse { /// /// 授权码 /// [JsonProperty("auth_code")] public string AuthCode { get; set; } /// /// appid /// [JsonProperty("requst_app_id")] public string RequstAppId { get; set; } /// /// scope /// [JsonProperty("scope")] public string Scope { get; set; } } }