export interface ProjectForm {
    name: string;
    description: string;
    tags: string[];
    uniqueFolderName: string;
    isVCSProject: boolean;
}

export interface ProjectFormErrors {
    name: string;
    description: string;
    tags: string;
}