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/src/TrainingSvc/DTOs/TrainingProgramDto.cs

17 lines
500 B

using Shared.Enum;
namespace TrainingSvc.DTOs;
public class TrainingProgramDto
{
public string Id { get; set; }
public string Lang { get; set; }
public string Name { get; set; }
public string? Description { get; set; }
public int WeekDuration { get; set; }
public int NbDays { get; set; }
public string OwnerId { get; set; }
public EGoal Goal { get; set; }
public EDifficulty Difficulty { get; set; }
public List<SessionDto> Sessions { get; set; } = new();
}