diff --git a/frontend/src/Types/Project.ts b/frontend/src/Types/Project.ts deleted file mode 100644 index bb4f8c7..0000000 --- a/frontend/src/Types/Project.ts +++ /dev/null @@ -1,13 +0,0 @@ -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; -} diff --git a/frontend/src/Types/TimeReport.ts b/frontend/src/Types/TimeReport.ts deleted file mode 100644 index 9685964..0000000 --- a/frontend/src/Types/TimeReport.ts +++ /dev/null @@ -1,9 +0,0 @@ -export interface TimeReport { - week: string; - development: string; - meeting: string; - administration: string; - ownwork: string; - studies: string; - testing: string; -} diff --git a/frontend/src/Types/Users.ts b/frontend/src/Types/Users.ts deleted file mode 100644 index 8323b2e..0000000 --- a/frontend/src/Types/Users.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This is how the API responds -export interface User { - id: number; - userName: string; -} - -// Used to create a new user -export interface NewUser { - userName: string; - password: string; -}