Files
the-biergarten-app/Repository/Repository.Core/Entities/UserCredential.cs
2026-01-15 21:48:20 -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; }
}