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; } } }