Files
BWPM/BlazorApp - Kopie (3)/Helper/SessionState.cs
2021-08-07 09:44:37 +02:00

14 lines
223 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BlazorApp.Helper
{
public class SessionState
{
public string SessionUser { get; set; }
}
}