mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.QuickConnect
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Quick connect state.
 | 
						|
    /// </summary>
 | 
						|
    public enum QuickConnectState
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// This feature has not been opted into and is unavailable until the server administrator chooses to opt-in.
 | 
						|
        /// </summary>
 | 
						|
        Unavailable = 0,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The feature is enabled for use on the server but is not currently accepting connection requests.
 | 
						|
        /// </summary>
 | 
						|
        Available = 1,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The feature is actively accepting connection requests.
 | 
						|
        /// </summary>
 | 
						|
        Active = 2
 | 
						|
    }
 | 
						|
}
 |