mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
Restructure data access layer/data layer
This commit is contained in:
9
DataAccessLayer/Entities/UserVerification.cs
Normal file
9
DataAccessLayer/Entities/UserVerification.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user