blob: 362f5b2b951036175a816368cfaae13d9bd44a46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
public string UserId { 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; }
}
}
|