This commit is contained in:
2025-11-22 11:11:06 +03:30
parent ee1e6049c5
commit 2ea6b819e2
2 changed files with 21 additions and 3 deletions
@@ -6,6 +6,10 @@ export class CreatePaymentMethodDto {
@IsString()
name!: string;
@ApiProperty({ description: 'English Payment method name' })
@IsString()
keyName!: string;
@ApiProperty({ description: 'Payment method description', required: false })
@IsOptional()
@IsString()
@@ -26,4 +30,3 @@ export class CreatePaymentMethodDto {
@IsNumber()
order?: number;
}