[+] 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
{
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
}