Files
gridpilot.gg/apps/website/lib/dtos/WalletDto.ts
2025-12-17 18:01:47 +01:00

12 lines
269 B
TypeScript

import type { WalletTransactionDto } from './WalletTransactionDto';
/**
* Wallet data transfer object
* Represents a driver's wallet
*/
export interface WalletDto {
driverId: string;
balance: number;
currency: string;
transactions: WalletTransactionDto[];
}