namespace Jellyfin.Api.Models.UserDtos
{
    /// 
    /// The update user easy password request body.
    /// 
    public class UpdateUserEasyPassword
    {
        /// 
        /// Gets or sets the new sha1-hashed password.
        /// 
        public string? NewPassword { get; set; }
        /// 
        /// Gets or sets the new password.
        /// 
        public string? NewPw { get; set; }
        /// 
        /// Gets or sets a value indicating whether to reset the password.
        /// 
        public bool ResetPassword { get; set; }
    }
}