aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Endpoints/V1/Projects
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/src/Endpoints/V1/Projects')
-rw-r--r--code/api/src/Endpoints/V1/Projects/CreateProjectRoute.cs2
-rw-r--r--code/api/src/Endpoints/V1/Projects/GetProjectsRoute.cs1
2 files changed, 3 insertions, 0 deletions
diff --git a/code/api/src/Endpoints/V1/Projects/CreateProjectRoute.cs b/code/api/src/Endpoints/V1/Projects/CreateProjectRoute.cs
index bd37faf..bc6247f 100644
--- a/code/api/src/Endpoints/V1/Projects/CreateProjectRoute.cs
+++ b/code/api/src/Endpoints/V1/Projects/CreateProjectRoute.cs
@@ -1,3 +1,5 @@
+using IOL.GreatOffice.Api.Models.Database;
+
namespace IOL.GreatOffice.Api.Endpoints.V1.Projects;
public class CreateProjectRoute : RouteBaseAsync.WithRequest<CreateProjectPayload>.WithActionResult
diff --git a/code/api/src/Endpoints/V1/Projects/GetProjectsRoute.cs b/code/api/src/Endpoints/V1/Projects/GetProjectsRoute.cs
index 8fe70a6..00604bc 100644
--- a/code/api/src/Endpoints/V1/Projects/GetProjectsRoute.cs
+++ b/code/api/src/Endpoints/V1/Projects/GetProjectsRoute.cs
@@ -1,3 +1,4 @@
+using IOL.GreatOffice.Api.Models.Database;
using MR.AspNetCore.Pagination;
namespace IOL.GreatOffice.Api.Endpoints.V1.Projects;