add:wallet

This commit is contained in:
2026-04-15 09:14:24 +03:30
parent eca144a6c6
commit 6f1217f063
6 changed files with 92 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
import { ApiProperty } from "@nestjs/swagger";
import { IsInt, IsNotEmpty } from "class-validator";
export class CreateWithdrawRequestDto {
@IsNotEmpty()
@IsInt()
@ApiProperty()
amount: number;
}