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