diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-09-25 20:06:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 20:06:53 +0200 |
| commit | b41da8e5d74da22d8f58a8bb4e8275c4fb4df5cf (patch) | |
| tree | 29a01825b60cac727ac30ac4be7975445f5f97d4 /Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs | |
| parent | 7ee57a07a7a28ff36213cac36636f367470b1af7 (diff) | |
| parent | fed58a0327efe29905376cdbdd3e51b0a9598bfe (diff) | |
Merge pull request #4209 from cvium/fix_forgotpassword
Add Dto to ForgotPassword
Diffstat (limited to 'Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs | 16 |
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; } + } +} |
