using System; namespace Jellyfin.Api.Models.UserDtos { /// /// The authenticate user by name request body. /// public class AuthenticateUserByName { /// /// Gets or sets the username. /// public string? Username { get; set; } /// /// Gets or sets the plain text password. /// public string? Pw { get; set; } /// /// Gets or sets the sha1-hashed password. /// [Obsolete("Send password using pw field")] public string? Password { get; set; } } }