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

23 lines
563 B
C#
Raw Normal View History

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