Files
the-biergarten-app/web/backend/Domain/Domain.Entities/Entities/UserCredential.cs
2026-04-27 18:47:39 -04:00

12 lines
322 B
C#

namespace Domain.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; }
}