withdraw request
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user