mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +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; }
|
|
}
|