source:
Sources/frontend/src/app/ProfessorCourseInterface.ts@
0e4e3d1
Last change on this file since 0e4e3d1 was 8423429, checked in by , 17 months ago | |
---|---|
|
|
File size: 229 bytes |
Line | |
---|---|
1 | import {CourseInterface} from "./courseInterface"; |
2 | import {ProfessorInterface} from "./ProfessorInterface"; |
3 | |
4 | export interface ProfessorCourseInterface{ |
5 | id?: number, |
6 | professor: ProfessorInterface, |
7 | course: CourseInterface, |
8 | } |
Note:
See TracBrowser
for help on using the repository browser.