fix chore
This commit is contained in:
13
Atomx.Common/Constants/StorageKeys.cs
Normal file
13
Atomx.Common/Constants/StorageKeys.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Atomx.Common.Constants
|
||||
{
|
||||
/// <summary>
|
||||
/// 本地/浏览器存储键名,客户端与服务端共享常量以保证一致性
|
||||
/// - 在 WASM 中用于 Blazored.LocalStorage
|
||||
/// - Key 名称与现有 AuthHeaderHandler 保持一致: "accessToken", "refreshToken"
|
||||
/// </summary>
|
||||
public static class StorageKeys
|
||||
{
|
||||
public const string AccessToken = "accessToken";
|
||||
public const string RefreshToken = "refreshToken";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user