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.
15 lines
448 B
15 lines
448 B
namespace Server.Dto.Response;
|
|
|
|
public class ResponseUserDto
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Age { get; set; }
|
|
public float Height { get; set; }
|
|
public float Weight { get; set; }
|
|
public bool Sexe { get; set; }
|
|
public string? Logo { get; set; }
|
|
public int NbSessionPerWeek { get; set; }
|
|
public string? EGoal { get; set; }
|
|
public string? ESleepLevel { get; set; }
|
|
} |