2026-03-26 16:39:30 -05:00
|
|
|
import { Workout } from "./workout.model";
|
|
|
|
|
|
|
|
|
|
export interface Plan {
|
|
|
|
|
name: string,
|
|
|
|
|
description: string,
|
|
|
|
|
startDate: Date,
|
|
|
|
|
endDate: Date,
|
|
|
|
|
numWeeks: number,
|
2026-03-26 16:49:50 -05:00
|
|
|
planDetials: Week[]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Week {
|
|
|
|
|
week: number,
|
2026-04-17 12:09:32 -05:00
|
|
|
totalMilage: number,
|
2026-03-26 16:49:50 -05:00
|
|
|
workouts: Workout[]
|
2026-03-26 16:39:30 -05:00
|
|
|
}
|