mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			523 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			523 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.Connect
 | 
						|
{
 | 
						|
    public class ConnectAuthorizationRequest
 | 
						|
    {
 | 
						|
        public string SendingUserId { get; set; }
 | 
						|
        public string ConnectUserName { get; set; }
 | 
						|
        public string[] EnabledLibraries { get; set; }
 | 
						|
        public bool EnableLiveTv { get; set; }
 | 
						|
        public string[] EnabledChannels { get; set; }
 | 
						|
 | 
						|
        public ConnectAuthorizationRequest()
 | 
						|
        {
 | 
						|
            EnabledLibraries = new string[] { };
 | 
						|
            EnabledChannels = new string[] { };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |