Massive/plan.ts
Brandon Presley 88c1c629d5 Add days, plansDays, days tables
This is for the purpose of adding the following relationships:
- Plans <-> Sets
- Plans <-> Days

Related to #102
2022-10-29 16:39:27 +13:00

6 lines
76 B
TypeScript

export interface Plan {
id: number;
days: string;
workouts: string;
}