jellyfin/Jellyfin.Api/Models/UserDtos/UpdateUserPassword.cs

28 lines
708 B
C#
Raw Normal View History

2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// The update user password request body.
/// </summary>
public class UpdateUserPassword
2020-06-18 13:35:29 -04:00
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets the current sha1-hashed password.
2020-06-18 13:35:29 -04:00
/// </summary>
2023-01-31 06:18:10 -05:00
public string? CurrentPassword { get; set; }
2020-06-18 13:35:29 -04:00
2023-01-31 06:18:10 -05:00
/// <summary>
/// Gets or sets the current plain text password.
/// </summary>
public string? CurrentPw { get; set; }
2020-06-18 13:35:29 -04:00
2023-01-31 06:18:10 -05:00
/// <summary>
/// Gets or sets the new plain text password.
/// </summary>
public string? NewPw { get; set; }
2020-06-18 13:35:29 -04:00
2023-01-31 06:18:10 -05:00
/// <summary>
/// Gets or sets a value indicating whether to reset the password.
/// </summary>
public bool ResetPassword { get; set; }
2020-06-18 13:35:29 -04:00
}