import { ApiProperty } from '@nestjs/swagger'; export class WithdrawFromLeagueWalletInputDTO { @ApiProperty() amount!: number; @ApiProperty() currency!: string; @ApiProperty() seasonId!: string; @ApiProperty() destinationAccount!: string; }