From cb11db62013c40a90e07884a685936b3c11a35a9 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 5 Oct 2019 10:23:46 -0400 Subject: [PATCH] [+] Add field id and unread to Assignment type --- src/components/app/app.ts | 3 +++ 1 file changed, 3 insertions(+) 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 }