13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
/**
|
|
* Wallet Service - DTO Only
|
|
*
|
|
* Returns raw API DTOs. No ViewModels or UX logic.
|
|
* All client-side presentation logic must be handled by hooks/components.
|
|
*/
|
|
export class WalletService {
|
|
constructor(private readonly apiClient: any) {}
|
|
|
|
async getWalletBalance(driverId: string): Promise<any> {
|
|
return { balance: 0, currency: 'USD' };
|
|
}
|
|
} |