From feb6f0e9482d2a081e555fdbeed25f357d6ade86 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Mon, 11 May 2026 18:05:31 +0000 Subject: [PATCH] refactor: move StorageKeys to Application layer --- src/NexusReader.Application/Constants/StorageKeys.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/NexusReader.Application/Constants/StorageKeys.cs diff --git a/src/NexusReader.Application/Constants/StorageKeys.cs b/src/NexusReader.Application/Constants/StorageKeys.cs new file mode 100644 index 0000000..fdde604 --- /dev/null +++ b/src/NexusReader.Application/Constants/StorageKeys.cs @@ -0,0 +1,12 @@ +namespace NexusReader.Application.Constants; + +public static class StorageKeys +{ + public const string AuthToken = "authToken"; + public const string RefreshToken = "refreshToken"; + public const string UserEmail = "userEmail"; + public const string UserTenant = "userTenant"; + public const string UserRoles = "userRoles"; + public const string Theme = "theme"; + public const string FocusMode = "focusMode"; +}