mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
begin scaffolding data access layer
This commit is contained in:
15
DataAccessLayer/UserVerification.cs
Normal file
15
DataAccessLayer/UserVerification.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DataAccessLayer;
|
||||
|
||||
public partial class UserVerification
|
||||
{
|
||||
public Guid UserVerificationID { get; set; }
|
||||
|
||||
public Guid UserAccountID { get; set; }
|
||||
|
||||
public DateTime VerificationDateTime { get; set; }
|
||||
|
||||
public virtual UserAccount UserAccount { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user