2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Core.Const;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public sealed class AuthClaimsConst
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户唯一ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string AuthIdKey = "Id";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 授权账户名键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string AccountKey = "Account";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 登录唯一ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public const string UuidKey = "UniqueId";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 授权平台类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string AuthPlatformTypeKey = "AuthPlatformType";
|
|
|
|
|
|
}
|