12 lines
269 B
TypeScript
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[];
|
|
} |