fix chore

This commit is contained in:
2025-12-04 03:08:29 +08:00
parent c6a95fa28d
commit 4e2bb49e86
100 changed files with 641 additions and 59800 deletions

View 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";
}
}