withdraw request

This commit is contained in:
2026-04-16 11:23:10 +03:30
parent 36a57db33b
commit 6871c8fd34
8 changed files with 141 additions and 15 deletions
+12
View File
@@ -0,0 +1,12 @@
import { ApiProperty } from "@nestjs/swagger";
import { IsNotEmpty, IsString, Length } from "class-validator";
export class ConfirmwithdrawRequestDto {
@IsNotEmpty()
@IsString()
@Length(2, 50,)
@ApiProperty({ description: "name", example: "mahyar" })
transactionId: string;
}