add:wallet
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
import { IsInt, IsNotEmpty } from "class-validator";
|
||||
|
||||
export class CreateWithdrawRequestDto {
|
||||
@IsNotEmpty()
|
||||
@IsInt()
|
||||
@ApiProperty()
|
||||
amount: number;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user