namespace FoodsharingSiegen.Contracts
{
///
/// Sammlung von StorageKeys (Browser LocalStorage)
///
public static class StorageKeys
{
#region Constants
///
/// Represents the storage key used for prospect filtering preferences.
///
public const string ProspectFilter = "ProspectFilter";
///
/// The token key
///
public const string TokenKey = "_token";
#endregion
}
}