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