aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-09-25 20:06:53 +0200
committerGitHub <noreply@github.com>2020-09-25 20:06:53 +0200
commitb41da8e5d74da22d8f58a8bb4e8275c4fb4df5cf (patch)
tree29a01825b60cac727ac30ac4be7975445f5f97d4 /Jellyfin.Api/Models
parent7ee57a07a7a28ff36213cac36636f367470b1af7 (diff)
parentfed58a0327efe29905376cdbdd3e51b0a9598bfe (diff)
Merge pull request #4209 from cvium/fix_forgotpassword
Add Dto to ForgotPassword
Diffstat (limited to 'Jellyfin.Api/Models')
-rw-r--r--Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs b/Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs
new file mode 100644
index 000000000..b31c6539c
--- /dev/null
+++ b/Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs
@@ -0,0 +1,16 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace Jellyfin.Api.Models.UserDtos
+{
+ /// <summary>
+ /// Forgot Password request body DTO.
+ /// </summary>
+ public class ForgotPasswordDto
+ {
+ /// <summary>
+ /// Gets or sets the entered username to have its password reset.
+ /// </summary>
+ [Required]
+ public string? EnteredUsername { get; set; }
+ }
+}