aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs')
-rw-r--r--BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs b/BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs
new file mode 100644
index 00000000..e7a3d8e3
--- /dev/null
+++ b/BackEnd/Timeline/Models/Http/HttpUserPatchRequest.cs
@@ -0,0 +1,30 @@
+using System.ComponentModel.DataAnnotations;
+using Timeline.Controllers;
+using Timeline.Models.Validation;
+
+namespace Timeline.Models.Http
+{
+ /// <summary>
+ /// Request model for <see cref="UserController.Patch(HttpUserPatchRequest, string)"/>.
+ /// </summary>
+ public class HttpUserPatchRequest
+ {
+ /// <summary>
+ /// New username. Null if not change. Need to be administrator.
+ /// </summary>
+ [Username]
+ public string? Username { get; set; }
+
+ /// <summary>
+ /// New password. Null if not change. Need to be administrator.
+ /// </summary>
+ [MinLength(1)]
+ public string? Password { get; set; }
+
+ /// <summary>
+ /// New nickname. Null if not change. Need to be administrator to change other's.
+ /// </summary>
+ [Nickname]
+ public string? Nickname { get; set; }
+ }
+}