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