Massive/plan.ts

6 lines
77 B
TypeScript

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