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; }
}
}