/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface APICFileInfo {
  isModified: boolean;
  path: string;
  fileUrl: string;
  content: string;
  orgId: string;
  projectId: string;
  id?: string;
}
