feat: create exercise dto

This commit is contained in:
Vinicius Souza 2024-11-01 11:31:54 -03:00
parent 0a4f91c1e0
commit fc49d1cbc8

9
src/dtos/ExerciseDTO.ts Normal file
View file

@ -0,0 +1,9 @@
export type ExerciseDTO = {
demo: string;
group: string;
id: string;
name: string;
repetitions: number;
series: number;
thumb: string;
};