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.
OptifitWebService/Server/Dto/Request/RequestTrainingProgramDto.cs

21 lines
579 B

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Shared;
namespace Server.Dto.Request
{
public class RequestTrainingProgramDto
{
public ELang Lang { get; set; }
public string Name { get; set; }
public string? OwnerId { get; set; }
public int? WeekDuration { get; set; }
public EGoal EGoal { get; set; }
public EDifficulty EDifficulty { get; set; }
public List<RequestSessionDto> Sessions { get; set; } = new List<RequestSessionDto>();
}
}