source: Sources/frontend/src/app/StudentCourseInterface.ts@ 0e4e3d1

Last change on this file since 0e4e3d1 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 217 bytes
Line 
1import {StudentInterface} from "./StudentInterface";
2import {CourseInterface} from "./courseInterface";
3
4export interface StudentCourseInterface {
5 id:number,
6 student: StudentInterface,
7 course: CourseInterface
8}
Note: See TracBrowser for help on using the repository browser.