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

10 lines
227 B
C#
Raw Normal View History

namespace Jellyfin.Api.Models.UserDtos
{
public class AuthenticateUserByName
{
public string Username { get; set; }
public string Pw { get; set; }
public string Password { get; set; }
}
}