Files
mikayla-dobson-dev/server/entities/project.ts

10 lines
187 B
TypeScript

type Project = {
name: string;
startDate: Date;
endDate: Date;
current: boolean;
description: string;
tagIDs: string[];
media?: string[]; // array of URLs
}