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.
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { IsString, MaxLength, MinLength } from "class-validator";
|
|
|
|
export class CreateGroupDto {
|
|
@IsString()
|
|
@MinLength(4)
|
|
@MaxLength(64)
|
|
groupName: string;
|
|
}
|