fix: formatted transaction type

This commit is contained in:
Ahmed Bouhuolia
2025-06-15 15:22:19 +02:00
parent bcae2dae03
commit bbf9ef9bc2
29 changed files with 248 additions and 67 deletions

View File

@@ -14,10 +14,7 @@ export class CommandTaxRateDto {
*/
@IsString()
@IsNotEmpty()
@ApiProperty({
description: 'The name of the tax rate.',
example: 'VAT',
})
@ApiProperty({ description: 'The name of the tax rate.', example: 'VAT' })
name: string;
/**
@@ -25,10 +22,7 @@ export class CommandTaxRateDto {
*/
@IsString()
@IsNotEmpty()
@ApiProperty({
description: 'The code of the tax rate.',
example: 'VAT',
})
@ApiProperty({ description: 'The code of the tax rate.', example: 'VAT' })
code: string;
/**