mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-08 11:01:21 +00:00
Refactor domain project structure and remove Domain.Validation project
This commit is contained in:
9
src/Core/Domain/Entities/UserVerification.cs
Normal file
9
src/Core/Domain/Entities/UserVerification.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Domain.Core.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