From e7830095b3466bb20a8c15e5b76c56f13d1b3721 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 15 Oct 2024 11:23:13 +0200 Subject: [PATCH] Add CreateFileTypeDto class to files.dto.ts Introduced a new DTO class named CreateFileTypeDto in files.dto.ts for future implementations. The class currently has no properties defined, marked with a TODO comment for subsequent development. --- apps/backend/src/app/files/files.dto.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/backend/src/app/files/files.dto.ts b/apps/backend/src/app/files/files.dto.ts index 6a92333..bd81b46 100644 --- a/apps/backend/src/app/files/files.dto.ts +++ b/apps/backend/src/app/files/files.dto.ts @@ -16,3 +16,7 @@ export class CreateFilesDto { @IsUUID() groupId: string; } + +export class CreateFileTypeDto { + //TODO +} \ No newline at end of file