From 99b0c09a6bb984d811b63788015cfad1855b5f3c Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 14 Nov 2022 11:25:12 +0700 Subject: refactor: Endpoints - Model payloads in relevant route class - Move RequestTimeZoneInfo out of EndpointBase --- .../Endpoints/Internal/Account/CreateAccountPayload.cs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs (limited to 'code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs') diff --git a/code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs b/code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs deleted file mode 100644 index 1161af3..0000000 --- a/code/api/src/Endpoints/Internal/Account/CreateAccountPayload.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace IOL.GreatOffice.Api.Endpoints.Internal.Account; - -/// -/// Payload for creating new user accounts. -/// -public class CreateAccountPayload -{ - /// - /// Username for the new account. - /// - public string Username { get; set; } - - /// - /// Password for the new account. - /// - public string Password { get; set; } -} \ No newline at end of file -- cgit v1.3