src/app/question.ts
Properties |
etime |
etime:
|
Type : string
|
out1 |
out1:
|
Type : string
|
out2 |
out2:
|
Type : string
|
statement |
statement:
|
Type : string
|
stime |
stime:
|
Type : string
|
tc1 |
tc1:
|
Type : string
|
tc2 |
tc2:
|
Type : string
|
title |
title:
|
Type : string
|
username |
username:
|
Type : string
|
export interface Question {
title: string;
username: string;
statement: string;
tc1: string;
out1: string;
tc2: string;
out2: string;
stime: string;
etime: string;
}