aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/Http/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/Entities/Http/User.cs')
-rw-r--r--Timeline/Entities/Http/User.cs40
1 files changed, 20 insertions, 20 deletions
diff --git a/Timeline/Entities/Http/User.cs b/Timeline/Entities/Http/User.cs
index b5384778..e9aaf795 100644
--- a/Timeline/Entities/Http/User.cs
+++ b/Timeline/Entities/Http/User.cs
@@ -1,20 +1,20 @@
-namespace Timeline.Entities.Http
-{
- public class UserPutRequest
- {
- public string Password { get; set; }
- public bool Administrator { get; set; }
- }
-
- public class UserPatchRequest
- {
- public string Password { get; set; }
- public bool? Administrator { get; set; }
- }
-
- public class ChangePasswordRequest
- {
- public string OldPassword { get; set; }
- public string NewPassword { get; set; }
- }
-}
+namespace Timeline.Entities.Http
+{
+ public class UserPutRequest
+ {
+ public string Password { get; set; }
+ public bool Administrator { get; set; }
+ }
+
+ public class UserPatchRequest
+ {
+ public string Password { get; set; }
+ public bool? Administrator { get; set; }
+ }
+
+ public class ChangePasswordRequest
+ {
+ public string OldPassword { get; set; }
+ public string NewPassword { get; set; }
+ }
+}