15 lines
260 B
TypeScript
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;
|
|
} |