using Shared.Enum; namespace UserService.DTOs; public class UpdateUserDto { public Guid Id { get; set; } public string Name { get; set; } public string Surname { get; set; } public int Age { get; set; } public float Weight { get; set; } public float Height { get; set; } public bool Sexe { get; set; } public string? ProfilePict { get; set; } public int? NbSessionWeek { get; set; } public EGoal? Goal { get; set; } public ESleepLevel? SleepLevel { get; set; } public ESportLevel? SportLevel { get; set; } public ESport? Sports { get; set; } public EHealthProblem? HealthProblems { get; set; } }