mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
10 lines
227 B
C#
10 lines
227 B
C#
|
|
namespace Jellyfin.Api.Models.UserDtos
|
|||
|
|
{
|
|||
|
|
public class AuthenticateUserByName
|
|||
|
|
{
|
|||
|
|
public string Username { get; set; }
|
|||
|
|
public string Pw { get; set; }
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|