fix: deadline veld

This commit is contained in:
Joyelle Ndagijimana 2025-05-17 02:22:11 +02:00
parent 368130c431
commit b7486b4d1b
4 changed files with 31 additions and 37 deletions

View file

@ -7,7 +7,7 @@ export interface AssignmentDTO {
description: string;
learningPath: string;
language: string;
deadline: Date;
deadline: Date | null;
groups: GroupDTO[] | string[][];
}