feat: create exercise dto
This commit is contained in:
parent
0a4f91c1e0
commit
fc49d1cbc8
1 changed files with 9 additions and 0 deletions
9
src/dtos/ExerciseDTO.ts
Normal file
9
src/dtos/ExerciseDTO.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export type ExerciseDTO = {
|
||||
demo: string;
|
||||
group: string;
|
||||
id: string;
|
||||
name: string;
|
||||
repetitions: number;
|
||||
series: number;
|
||||
thumb: string;
|
||||
};
|
||||
Loading…
Reference in a new issue