mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
10 lines
258 B
C#
10 lines
258 B
C#
namespace DataAccessLayer.Entities;
|
|
|
|
public class UserVerification
|
|
{
|
|
public Guid UserVerificationId { get; set; }
|
|
public Guid UserAccountId { get; set; }
|
|
public DateTime VerificationDateTime { get; set; }
|
|
public byte[]? Timer { get; set; }
|
|
}
|