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

28 lines
708 B
C#
Raw Normal View History

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