Files
dsc-api/src/modules/dkala/DTO/create-group.dto.ts
T
2026-02-15 11:29:47 +03:30

10 lines
257 B
TypeScript

import { ApiProperty } from "@nestjs/swagger";
import { IsNotEmpty, IsString } from "class-validator";
export class CreateGroupDto {
@IsNotEmpty()
@IsString()
@ApiProperty({ description: "Group name", example: "Navigation Icons" })
name: string;
}