diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 0eeb302..dde1918 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -14,6 +14,7 @@ import {GPAUtils} from '@/utils/gpa-utils'; */ export interface Assignment { + id: number, type: string, description: string, date: string, @@ -21,6 +22,8 @@ export interface Assignment include: boolean, display: boolean, + unread: boolean, + scoreMax: number, score: number }