/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

import type { Project } from './Project';

export type GetProjects = {
    total?: number;
    items?: Array<Project>;
}
