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.
WebServices/UserService/Entities/User.cs

23 lines
938 B

namespace UserService.Entities;
public class User
{
public Guid Id { get; set; }
public string Name { get; set; } = "Gest";
public string Surname { get; set; } = "Gest";
public int Age { get; set; } = 0;
public float Weight { get; set; } = 0.0f;
public float Height { get; set; } = 0.0f;
public bool Sexe { get; set; } = true;
public string ProfilePict { get; set; } = "https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png";
public int NbSessionWeek { get; set; } = 1;
public string Goal { get; set; } = null;
public string SleepLevel { get; set; } = null;
public string SportLevel { get; set; } = null;
public List<string> Sports { get; set; } = [];
public List<string> HealthProblems { get; set; } = [];
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}