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";
///
/// Represents the storage key used for prospect sorting preferences.
///
public const string SortProspects = "SortProspects";
///
/// Represents the storage key used for sorting all prospects.
///
public const string SortProspectsAll = "SortProspectsAll";
///
/// Represents the storage key used for sorting completed prospects.
///
public const string SortProspectsDone = "SortProspectsDone";
///
/// Represents the storage key used for sorting prospects pending verification.
///
public const string SortProspectsVerify = "SortProspectsVerify";
///
/// The token key
///
public const string TokenKey = "_token";
#endregion
}
}