From 15598018552fcb3eb50345a3aeb765f6bb2c00df Mon Sep 17 00:00:00 2001 From: KerelOlivier Date: Tue, 24 May 2022 16:56:46 +0200 Subject: [PATCH] add: UserController and UserService classes --- Controllers/UserController.cs | 6 ++++++ Services/UserService.cs | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 Controllers/UserController.cs create mode 100644 Services/UserService.cs diff --git a/Controllers/UserController.cs b/Controllers/UserController.cs new file mode 100644 index 0000000..99db3ae --- /dev/null +++ b/Controllers/UserController.cs @@ -0,0 +1,6 @@ +namespace backend.Controllers; + +public class UserController +{ + +} \ No newline at end of file diff --git a/Services/UserService.cs b/Services/UserService.cs new file mode 100644 index 0000000..b097f4e --- /dev/null +++ b/Services/UserService.cs @@ -0,0 +1,6 @@ +namespace backend.Services; + +public class UserService +{ + +} \ No newline at end of file