11 lines
252 B
TypeScript
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;
|
|
} |