namespace Azaion.Repository.Entities; public class User { public Guid Id { get; set; } public string Username { get; set; } = null!; public string Email { get; set; } = null!; public string PasswordHash { get; set; } = null!; public string PasswordSalt { get; set; } = null!; public DateTime CreatedDate { get; set; } public DateTime UpdatedDate { get; set; } }