Refactoring data model

This commit is contained in:
Will Baumbach
2026-03-26 16:49:50 -05:00
parent 7ae3dbd27f
commit 349ac48fa2
4 changed files with 860 additions and 928 deletions

View File

@@ -6,5 +6,10 @@ export interface Plan {
startDate: Date,
endDate: Date,
numWeeks: number,
workouts: Workout[][]
planDetials: Week[]
}
export interface Week {
week: number,
workouts: Workout[]
}