Files
runningPlans/src/app/models/plan.model.ts

10 lines
200 B
TypeScript
Raw Normal View History

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