SharpRSS/SharpRSS.Data/Domains/Auth/AuthenticationStateModel.cs

10 lines
347 B
C#

namespace SharpRSS.Data.Domains.Auth;
public class AuthenticationStateModel
{
public string Id { get; set; } = Guid.NewGuid().ToString();
public DateTime Created { get; set; } = DateTime.Now;
public DateTime LastHit { get; set; }
public string UserIdReference { get; set; } = string.Empty;
public bool LoggedIn { get; set; }
}