You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
namespace Jellyfin.Api.Models.UserDtos
|
|
{
|
|
/// <summary>
|
|
/// The update user easy password request body.
|
|
/// </summary>
|
|
public class UpdateUserEasyPassword
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the new sha1-hashed password.
|
|
/// </summary>
|
|
public string? NewPassword { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the new password.
|
|
/// </summary>
|
|
public string? NewPw { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to reset the password.
|
|
/// </summary>
|
|
public bool ResetPassword { get; set; }
|
|
}
|
|
}
|