UpdateUserEasyPassword.cs 637 B

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