add project creation and listing

This commit is contained in:
João Geonizeli
2022-07-09 10:05:01 -03:00
parent c3fe6e6f1c
commit e0dd6c2307
27 changed files with 256 additions and 26 deletions

View File

@@ -0,0 +1,4 @@
export type NewProjectDto = {
name: string
userId: number
}

View File

@@ -0,0 +1,3 @@
export type ProjectDto = {
name: string
}

View File

@@ -0,0 +1,4 @@
export type UpdateProjectDto = {
id: string
name: string
}