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.
22 lines
578 B
22 lines
578 B
using System.Collections.Generic;
|
|
using Shared;
|
|
|
|
namespace Server.Dto.Response
|
|
{
|
|
public class ResponseTrainingProgramDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
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<ResponseSessionDto> Sessions { get; set; } = new List<ResponseSessionDto>();
|
|
}
|
|
} |