export interface ApiResponse { code: string; message: string; body: any } export interface BaseResponse { success: boolean; error?: string; }