jellyfin/MediaBrowser.Controller/Session/AuthenticationRequest.cs
Luke Pulverenti bca1d65bdc fixes #1074
2017-09-17 12:45:23 -04:00

18 lines
561 B
C#

namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
public string UserId { get; set; }
public string Password { get; set; }
public string PasswordSha1 { get; set; }
public string PasswordMd5 { get; set; }
public string App { get; set; }
public string AppVersion { get; set; }
public string DeviceId { get; set; }
public string DeviceName { get; set; }
public string RemoteEndPoint { get; set; }
}
}