source: Sources/frontend/src/app/courseInterface.ts

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

Add backend and frontend projects

  • Property mode set to 100644
File size: 171 bytes
Line 
1import {SubjectInterface} from "./subjectInterface";
2
3export interface CourseInterface{
4 id: number,
5 name: string,
6 description: string,
7 subject: SubjectInterface
8}
Note: See TracBrowser for help on using the repository browser.