25 lines
585 B
C#
25 lines
585 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace WeChatSharp
|
||
|
{
|
||
|
public class WeChatAccessToken
|
||
|
{
|
||
|
[JsonProperty("access_token")]
|
||
|
public string AccessToken { get; set; }
|
||
|
|
||
|
[JsonProperty("expires_in")]
|
||
|
public int ExpiresIn { get; set; }
|
||
|
|
||
|
[JsonProperty("refresh_token")]
|
||
|
public string RefreshToken { get; set; }
|
||
|
|
||
|
[JsonProperty("openid")]
|
||
|
public string OpenId { get; set; }
|
||
|
|
||
|
[JsonProperty("scope")]
|
||
|
public string Scope { get; set; }
|
||
|
|
||
|
[JsonProperty("unionid")]
|
||
|
public string UnionId { get; set; }
|
||
|
}
|
||
|
}
|