Massive/plan.ts

6 lines
76 B
TypeScript
Raw Normal View History

2022-07-06 05:40:53 +00:00
export interface Plan {
id: number;
2022-07-06 05:40:53 +00:00
days: string;
workouts: string;
}