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

23 lines
563 B
C#
Raw Normal View History

2023-01-31 12:18:10 +01:00
namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// The update user easy password request body.
/// </summary>
public class UpdateUserEasyPassword
2020-06-18 19:35:29 +02:00
{
/// <summary>
2023-01-31 12:18:10 +01:00
/// Gets or sets the new sha1-hashed password.
2020-06-18 19:35:29 +02:00
/// </summary>
2023-01-31 12:18:10 +01:00
public string? NewPassword { get; set; }
2020-06-18 19:35:29 +02:00
2023-01-31 12:18:10 +01:00
/// <summary>
/// Gets or sets the new 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
}