/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { VCSAssets } from "./vcs-assets.model.js";
export type VCSProject = {
  isLoading: boolean;
  name: string;
  description: string;
  lastUpdated: number;
  tags: string[];
  repoNameWithOwner: string;
  rootDirectoryAlias: string;
  assets: VCSAssets;
  isPinned: boolean;
  isVCSProject: boolean;
};
