jellyfin/MediaBrowser.Controller/Session/AuthenticationRequest.cs

17 lines
516 B
C#
Raw Normal View History

2014-08-10 22:13:17 +00:00

namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
2016-09-14 21:34:19 +00:00
public string UserId { get; set; }
2014-10-17 04:52:41 +00:00
public string PasswordSha1 { get; set; }
public string PasswordMd5 { get; set; }
2014-08-10 22:13:17 +00:00
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; }
}
}