Reorder imports in groups.dto.ts

Rearranged the imports in `groups.dto.ts` to maintain alphabetical order and used double quotes for consistency with the rest of the project. This change does not alter functionality but improves code readability and maintainability.
This commit is contained in:
Mathis H (Avnyr) 2024-10-07 12:01:01 +02:00
parent 7e8d6e73eb
commit e9277ba763
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,8 +1,8 @@
import { IsString, MinLength, MaxLength } from 'class-validator';
import { IsString, MaxLength, MinLength } from "class-validator";
export class CreateGroupDto {
@IsString()
@MinLength(4)
@MaxLength(64)
groupName: string;
@IsString()
@MinLength(4)
@MaxLength(64)
groupName: string;
}