fix: question controller

This commit is contained in:
Gabriellvl 2025-04-06 18:30:43 +02:00
parent bd75ab8af9
commit 6a1adb0ee3
4 changed files with 49 additions and 88 deletions

View file

@ -4,7 +4,7 @@ import { StudentDTO } from './student';
export interface QuestionDTO {
learningObjectIdentifier: LearningObjectIdentifierDTO;
sequenceNumber?: number;
author: StudentDTO | string;
author: string;
timestamp?: string;
content: string;
}