Add project API interface in frontend

This commit is contained in:
Imbus 2024-03-13 17:52:56 +01:00
parent 1c87380db7
commit b5c2987281
2 changed files with 26 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;
}