12 lines
399 B
C#
12 lines
399 B
C#
namespace RolemasterDb.App.Frontend.AppState;
|
|
|
|
public static class BrowserStorageKeys
|
|
{
|
|
public const string ThemeMode = "rolemaster.theme.mode";
|
|
public const string PinnedTables = "rolemaster.tables.pinned";
|
|
public const string RecentTables = "rolemaster.tables.recent";
|
|
|
|
public static string TableContext(string destination) =>
|
|
$"rolemaster.tables.context.{destination}";
|
|
}
|