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.
27 lines
609 B
27 lines
609 B
using Shared;
|
|
|
|
namespace Server.Dto.Response
|
|
{
|
|
public class ResponseExerciceDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string TemplateId { get; set; }
|
|
|
|
public string TemplateName { get; set; }
|
|
|
|
public string TemplateInstructions { get; set; }
|
|
|
|
public string? TemplateImageId { get; set; }
|
|
|
|
public string? TemplateVideoId { get; set; }
|
|
|
|
public ECategory Category { get; set; }
|
|
|
|
public int NbSets { get; set; }
|
|
|
|
public int NbReps { get; set; }
|
|
|
|
public int RestingTime { get; set; }
|
|
}
|
|
} |