import { Workout } from "./workout.model";
export interface Plan {
name: string,
description: string,
startDate: Date,
endDate: Date,
numWeeks: number,
planDetials: Week[]
}
export interface Week {
week: number,
workouts: Workout[]