dkala module

This commit is contained in:
2026-02-15 11:29:47 +03:30
parent 5e8cfed98e
commit efd060c46a
19 changed files with 1249 additions and 0 deletions
@@ -0,0 +1,9 @@
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;
}