Refactor domain project structure and remove Domain.Validation project

This commit is contained in:
Aaron Po
2026-02-11 21:02:16 -05:00
parent 3a32f326bf
commit 99b13e2742
10 changed files with 6 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
namespace Domain.Core.Entities;
public class UserAccount
{
public Guid UserAccountId { get; set; }
public string Username { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public DateTime DateOfBirth { get; set; }
public byte[]? Timer { get; set; }
}