22 lines
550 B
C#
22 lines
550 B
C#
namespace FoodsharingSiegen.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Sammlung von StorageKeys (Browser LocalStorage)
|
|
/// </summary>
|
|
public static class StorageKeys
|
|
{
|
|
#region Constants
|
|
|
|
/// <summary>
|
|
/// 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
|
|
}
|
|
} |