mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
10 lines
347 B
C#
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; }
|
|
} |