Skip to content
Snippets Groups Projects
term.ts 265 B
Newer Older
export interface Term {
    termCode: string;
    shortDescription: string;
    longDescription: string;
    beginDate: number;
    endDate: number;
    instructionBeginDate: number;
    instructionEndDate: number;
    academicYear: string;
    pastTerm: boolean;
}