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

11 lines
252 B
TypeScript

/**
* Wallet transaction data transfer object
* Represents a transaction in a driver's wallet
*/
export interface WalletTransactionDto {
id: string;
type: 'deposit' | 'withdrawal';
amount: number;
description?: string;
createdAt: string;
}