From 5fe7024fea6b501341d8d7ed2ff602a94fc6e991 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Mon, 11 May 2026 18:08:51 +0000 Subject: [PATCH] refactor: remove redundant StorageKeys from UI.Shared (moved to Application) --- src/NexusReader.UI.Shared/Constants/StorageKeys.cs | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/NexusReader.UI.Shared/Constants/StorageKeys.cs diff --git a/src/NexusReader.UI.Shared/Constants/StorageKeys.cs b/src/NexusReader.UI.Shared/Constants/StorageKeys.cs deleted file mode 100644 index 084d791..0000000 --- a/src/NexusReader.UI.Shared/Constants/StorageKeys.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace NexusReader.UI.Shared.Constants; - -public static class StorageKeys -{ - public const string AuthToken = "nexus_auth_token"; - public const string RefreshToken = "nexus_refresh_token"; - public const string UserEmail = "nexus_user_email"; - public const string UserTenant = "nexus_user_tenant"; - public const string UserRoles = "nexus_user_roles"; -}