using System; using System.Collections.Generic; using System.Text; namespace WeiXinKfSDK.Response { public class GetAccessTokenResponse : WxKfBaseResponse { public string access_token { get; set; } public long expires_in { get; set; } } }