reporte multa

This commit is contained in:
xXpuma99Xx
2023-01-08 23:27:23 -06:00
parent 06a5b670fb
commit d95c7ec44c
3 changed files with 57 additions and 33 deletions
+13
View File
@@ -0,0 +1,13 @@
import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
export class ReporteDto {
@IsString()
@IsNotEmpty()
@IsOptional()
nombre?: string;
@IsString()
@IsNotEmpty()
@IsOptional()
usuario?: string;
}