interface ImportRequest {
    id: number;
    username: string;
    path: string;
    status: string;
    comment: string | null;
    type: string;
    failed_record_csv: string | null;
    total_count: number;
    failed_count: number;
    success_count: number;
    created_at: string;
}

export type { ImportRequest };