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; } }