added startedat an completeat structs

This commit is contained in:
John O'Keefe 2024-07-27 12:56:21 -04:00
parent 9e0b05fb60
commit 65c12472f1

View File

@ -46,6 +46,16 @@ export interface MediaList {
}
}
status: string
startedAt: {
year: number
month: number
day: number
}
completedAt: {
year?: number
month?: number
day?: number
}
notes?: string
progress: number
score: number