mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			640 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			640 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Session
 | 
						|
{
 | 
						|
    public class AuthenticationRequest
 | 
						|
    {
 | 
						|
        public string Username { get; set; }
 | 
						|
 | 
						|
        public Guid UserId { get; set; }
 | 
						|
 | 
						|
        public string Password { get; set; }
 | 
						|
 | 
						|
        [Obsolete("Send full password in Password field")]
 | 
						|
        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; }
 | 
						|
    }
 | 
						|
}
 |