import type { Screen } from "./screen";
import type { Table } from "./table";
export interface Project {
id: string;
title: string;
detail: string;
createdTime: string;
updatedTime: string;
screens: Screen[],
tables: Table[]
}