Files
juipnet/Infrastructure/WxApi/Response/GetGetWebAccessTokenResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

10 lines
288 B
C#

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; }
}
}