Co-authored-by: Imbus <imbus64@users.noreply.github.com>
This commit is contained in:
commit
e1bf25148e
3 changed files with 27 additions and 0 deletions
13
frontend/src/Types/Project.ts
Normal file
13
frontend/src/Types/Project.ts
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue