export interface Model { id: number; createdAt: Date; updatedAt: Date; } export interface ApiResponse { success: boolean; data: T; }