refactor driver module (wip)

This commit is contained in:
2025-12-22 10:24:40 +01:00
parent e7dbec4a85
commit 9da528d5bd
108 changed files with 842 additions and 947 deletions

View File

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