refactor(nestjs): wip

This commit is contained in:
Ahmed Bouhuolia
2025-05-27 15:42:27 +02:00
parent 83c9392b74
commit b7a3c42074
33 changed files with 186 additions and 72 deletions

View File

@@ -1,12 +1,16 @@
import { IsString } from 'class-validator';
import { IsNotEmpty } from "class-validator";
import { IsString } from "class-validator";
export class CreateCurrencyDto {
@IsString()
@IsNotEmpty()
currencyName: string;
@IsString()
@IsNotEmpty()
currencyCode: string;
@IsString()
@IsNotEmpty()
currencySign: string;
}