refactor(nestjs): currencies module

This commit is contained in:
Ahmed Bouhuolia
2025-05-17 12:14:02 +02:00
parent 4de1ef71ca
commit ce058b9416
16 changed files with 504 additions and 1 deletions

View File

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