aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs
blob: 00b90a9250bc33e3de49534129f49784c9a9cee6 (plain)
1
2
3
4
5
6
7
8
9
namespace Jellyfin.Api.Models.UserDtos
{
    public class AuthenticateUserByName
    {
        public string Username { get; set; }
        public string Pw { get; set; }
        public string Password { get; set; }
    }
}