mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
12 lines
337 B
C#
12 lines
337 B
C#
namespace DataAccessLayer.Entities;
|
|
|
|
public class UserCredential
|
|
{
|
|
public Guid UserCredentialID { get; set; }
|
|
public Guid UserAccountID { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime Expiry { get; set; }
|
|
public string Hash { get; set; } = string.Empty;
|
|
public byte[]? Timer { get; set; }
|
|
}
|