tgd-backend/src/quiz/dto/question.dto.ts
2024-10-30 18:56:48 +04:00

19 lines
291 B
TypeScript

export interface QuestionDto {
id: string;
text: string;
answers: string[];
valid: string;
note: string | null;
qId: string;
}
export interface QuestionDtoExcel {
text: string;
a1: string;
a2: string;
a3: string;
a4: string;
valid: string;
note: string | null;
}