feat: add support tickets backend and dashboard

هذا الالتزام موجود في:
boutmoun123
2026-06-07 02:10:31 +03:00
الأصل d373d576e3
التزام 48dc3861cf
20 ملفات معدلة مع 1811 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,10 @@
import { ApiPropertyOptional } from '@nestjs/swagger';
import { IsOptional, IsString, Length } from 'class-validator';
export class CreateSupportMessageDto {
@ApiPropertyOptional({ maxLength: 5000 })
@IsOptional()
@IsString()
@Length(0, 5000)
message?: string;
}