UpdateUserEasyPassword.cs 560 B

12345678910111213141516171819202122
  1. namespace Jellyfin.Api.Models.UserDtos;
  2. /// <summary>
  3. /// The update user easy password request body.
  4. /// </summary>
  5. public class UpdateUserEasyPassword
  6. {
  7. /// <summary>
  8. /// Gets or sets the new sha1-hashed password.
  9. /// </summary>
  10. public string? NewPassword { get; set; }
  11. /// <summary>
  12. /// Gets or sets the new password.
  13. /// </summary>
  14. public string? NewPw { get; set; }
  15. /// <summary>
  16. /// Gets or sets a value indicating whether to reset the password.
  17. /// </summary>
  18. public bool ResetPassword { get; set; }
  19. }