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