mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
23 lines
492 B
C#
23 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Module.WeChat.Model
|
|
{
|
|
public class AccessTokenResponse
|
|
{
|
|
public string access_token { get; set; }
|
|
|
|
public int expires_in { get; set; }
|
|
}
|
|
|
|
public class AccessTokenRequest
|
|
{
|
|
public string grant_type { get; set; }
|
|
public string appid { get; set; }
|
|
public string secret { get; set; }
|
|
}
|
|
}
|