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.
This commit is contained in:
Mathis H (Avnyr) 2024-10-15 11:23:13 +02:00
parent 055c48dbf9
commit e7830095b3
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -16,3 +16,7 @@ export class CreateFilesDto {
@IsUUID() @IsUUID()
groupId: string; groupId: string;
} }
export class CreateFileTypeDto {
//TODO
}