mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-08 03:01:20 +00:00
10 lines
245 B
C#
10 lines
245 B
C#
namespace Domain.Entities;
|
|
|
|
public class UserVerification
|
|
{
|
|
public Guid UserVerificationId { get; set; }
|
|
public Guid UserAccountId { get; set; }
|
|
public DateTime VerificationDateTime { get; set; }
|
|
public byte[]? Timer { get; set; }
|
|
}
|