/** * Common API Response Interface for Fleet Management */ export interface IFleetApiResponse { success: boolean; message?: string; data?: T | T[]; total?: number; }