Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
planned-term.ts 183 B
import { Note } from '@app/core/models/note';
import { Course } from '@app/core/models/course';

export interface PlannedTerm {
	termCode: string;
	note?: Note;
	courses: Course[];
}