[+] Add field id and unread to Assignment type

This commit is contained in:
Hykilpikonna
2019-10-05 10:23:46 -04:00
parent b52f3d2617
commit cb11db6201
+3
View File
@@ -14,6 +14,7 @@ import {GPAUtils} from '@/utils/gpa-utils';
*/ */
export interface Assignment export interface Assignment
{ {
id: number,
type: string, type: string,
description: string, description: string,
date: string, date: string,
@@ -21,6 +22,8 @@ export interface Assignment
include: boolean, include: boolean,
display: boolean, display: boolean,
unread: boolean,
scoreMax: number, scoreMax: number,
score: number score: number
} }