mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 03:04:49 +03:00
Add GPL modules
This commit is contained in:
19
MediaBrowser.Controller/Session/AuthenticationRequest.cs
Normal file
19
MediaBrowser.Controller/Session/AuthenticationRequest.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user