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/Response/ResponseTemplateExerciceDto.cs

18 lines
383 B

namespace Server.Dto.Response;
public class ResponseTemplateExerciceDto
{
public string Id { get; set; }
public string Name { get; set; }
public string Equipment { get; set; }
public string Instructions { get; set; }
public float Duration { get; set; }
public string? ImageId { get; set; }
public string? VideoId { get; set; }
}