aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/projects/Project.ts
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontend/src/models/projects/Project.ts')
-rw-r--r--code/frontend/src/models/projects/Project.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/code/frontend/src/models/projects/Project.ts b/code/frontend/src/models/projects/Project.ts
new file mode 100644
index 0000000..f265e67
--- /dev/null
+++ b/code/frontend/src/models/projects/Project.ts
@@ -0,0 +1,13 @@
+import type { Temporal } from "temporal-polyfill"
+import type { ProjectMember } from "./ProjectMember"
+import type { ProjectStatus } from "./ProjectStatus"
+
+export type Project = {
+ id: string,
+ name: string,
+ description?: string,
+ start: Temporal.PlainDate,
+ stop?: Temporal.PlainDate,
+ members: Array<ProjectMember>,
+ status: ProjectStatus
+} \ No newline at end of file