[+] Create AssignmentType interface

This commit is contained in:
Hykilpikonna
2019-11-09 19:47:56 -05:00
parent ee308d29ff
commit aa014bcdab
+10
View File
@@ -27,6 +27,16 @@ export interface Assignment
gradingPeriod: number
}
export interface AssignmentType
{
id: number
name: string
weight: number
scoreMax: number
score: number
}
export default class Course
{
id: number;