namespace FinControl.Domain.Entities; public class User { public Guid Id { get; set; } = Guid.NewGuid(); public string Name { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string PasswordHash { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime? UpdatedAt { get; set; } public ICollection Accounts { get; set; } = new List(); public ICollection Categories { get; set; } = new List(); public ICollection Goals { get; set; } = new List(); }