source: Sources/frontend/src/app/AnswerInterface.ts@ cd15236

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

Add backend and frontend projects

  • Property mode set to 100644
File size: 373 bytes
Line 
1import {QuestionInterface} from "./QuestionInterface";
2import {ProfessorInterface} from "./ProfessorInterface";
3import {StudentInterface} from "./StudentInterface";
4
5export interface AnswerInterface{
6 id:number,
7 content?: string,
8 valid?: string,
9 dateAnswered?: string,
10 question?: QuestionInterface,
11 professor?: ProfessorInterface,
12 student?: StudentInterface
13}
Note: See TracBrowser for help on using the repository browser.