2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Session
|
|
|
|
{
|
|
|
|
public class AuthenticationRequest
|
|
|
|
{
|
|
|
|
public string Username { get; set; }
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public string PasswordSha1 { 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; }
|
|
|
|
}
|
|
|
|
}
|