Co-authored-by: Imbus <imbus64@users.noreply.github.com>

This commit is contained in:
Hollgy 2024-03-13 17:56:31 +01:00
commit e1bf25148e
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,13 @@
export interface Project {
id: number;
name: string;
description: string;
owner: string;
created: string; // This is a date
}
export interface NewProject {
name: string;
description: string;
owner: string;
}