jellyfin/MediaBrowser.Controller/Session/AuthenticationRequest.cs
2014-08-10 18:13:17 -04:00

15 lines
421 B
C#

namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
public string Password { 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; }
}
}