Files
gridpilot.gg/apps/api/src/domain/league/dtos/WithdrawFromLeagueWalletInputDTO.ts

15 lines
260 B
TypeScript

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