Auth System

This commit is contained in:
Andre Beging
2022-04-04 10:04:19 +02:00
parent 77382944eb
commit 427b924759
14 changed files with 552 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
namespace FoodsharingSiegen.Contracts
{
/// <summary>
/// Sammlung von StorageKeys (Browser LocalStorage)
/// </summary>
public static class StorageKeys
{
/// <summary>
/// The token key
/// </summary>
public const string TokenKey = "_token";
}
}