Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/framework/Yi.Framework.WeChat.MiniProgram/HttpModels/AccessTokenHttpModel.cs 338 Bytes
3ae287f3   “wangming”   项目初始化,准备开始开发
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  namespace Yi.Framework.WeChat.MiniProgram.HttpModels;
  
  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; }
  }