Initial commit: LACA parking management system

This commit is contained in:
2025-08-13 10:05:36 +07:00
commit 8b07467b61
275 changed files with 66828 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { ApiProperty } from '@nestjs/swagger';
import {
IsNotEmpty,
IsNumber,
IsString,
} from 'class-validator';
export class CreateCommentDto {
@ApiProperty()
@IsString()
@IsNotEmpty()
content: string;
@ApiProperty()
@IsNumber()
@IsNotEmpty()
slot_id: number
}