You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
656 B
21 lines
656 B
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; }
|
|
} |