Last change
on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
373 bytes
|
Line | |
---|
1 | import {QuestionInterface} from "./QuestionInterface";
|
---|
2 | import {ProfessorInterface} from "./ProfessorInterface";
|
---|
3 | import {StudentInterface} from "./StudentInterface";
|
---|
4 |
|
---|
5 | export 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.