aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Endpoints/Internal/Account/CreateAccountPayload.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Endpoints/Internal/Account/CreateAccountPayload.cs')
-rw-r--r--server/src/Endpoints/Internal/Account/CreateAccountPayload.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/server/src/Endpoints/Internal/Account/CreateAccountPayload.cs b/server/src/Endpoints/Internal/Account/CreateAccountPayload.cs
deleted file mode 100644
index dc73e68..0000000
--- a/server/src/Endpoints/Internal/Account/CreateAccountPayload.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace IOL.GreatOffice.Api.Endpoints.Internal.Account;
-
-/// <summary>
-/// Payload for creating new user accounts.
-/// </summary>
-public class CreateAccountPayload
-{
- /// <summary>
- /// Username for the new account.
- /// </summary>
- public string Username { get; set; }
-
- /// <summary>
- /// Password for the new account.
- /// </summary>
- public string Password { get; set; }
-}