WechatSharp/Models/WeChatAccessToken.cs

25 lines
585 B
C#
Raw Normal View History

2024-07-27 14:55:25 +08:00
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; }
}
}