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