Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/UsAppJwtClaims.cs 551 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
  namespace FoodLabeling.Application.Contracts;
  
  /// <summary>
  /// 美国版 App JWT 自定义声明(用于与 Web 管理端 Token 区分能力)
  /// </summary>
  public static class UsAppJwtClaims
  {
      /// <summary>声明类型:客户端种类</summary>
      public const string ClientKind = "client_kind";
  
      /// <summary>美国版移动端 App</summary>
      public const string ClientKindUsApp = "us-app";
aa01fd36   李曜臣   2026-08-07代码优化
13
14
15
  
      /// <summary>泰额版 Appus-app-auth 转发 th-app-auth 签发)</summary>
      public const string ClientKindThApp = "th_app";
59e51671   “wangming”   1
16
  }