mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
522 B
C#
18 lines
522 B
C#
using System;
|
|
|
|
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; }
|
|
}
|
|
}
|