Files
the-biergarten-app/DataAccessLayer/Entities/UserCredential.cs
2026-01-11 23:36:26 -05:00

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