Files
juipnet/Infrastructure/WxApi/Response/GetGetWebAccessTokenResponse.cs

10 lines
288 B
C#
Raw Normal View History

2020-12-28 14:55:48 +08:00
namespace Hncore.Wx.Open
{
public class GetGetWebAccessTokenResponse : ResponseBase
{
public string access_token { get; set; }
public string refresh_token { get; set; }
public string openid { get; set; }
public string scope { get; set; }
}
2020-10-07 20:25:03 +08:00
}