mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
20 lines
413 B
C#
20 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DataAccessLayer;
|
|
|
|
public partial 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; } = null!;
|
|
|
|
public virtual UserAccount UserAccount { get; set; } = null!;
|
|
}
|