Store Filter between pages

This commit is contained in:
Andre Beging
2025-04-02 07:47:33 +02:00
parent 6d6d79f55a
commit b7ba95b716
10 changed files with 103 additions and 11 deletions

View File

@@ -5,9 +5,18 @@ namespace FoodsharingSiegen.Contracts
/// </summary>
public static class StorageKeys
{
#region Constants
/// <summary>
/// The token key
/// Represents the storage key used for prospect filtering preferences.
/// </summary>
public const string ProspectFilter = "ProspectFilter";
/// <summary>
/// The token key
/// </summary>
public const string TokenKey = "_token";
#endregion
}
}