mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			364 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			364 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The linked child type.
 | 
						|
    /// </summary>
 | 
						|
    public enum LinkedChildType
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Manually linked child.
 | 
						|
        /// </summary>
 | 
						|
        Manual = 0,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Shortcut linked child.
 | 
						|
        /// </summary>
 | 
						|
        Shortcut = 1
 | 
						|
    }
 | 
						|
}
 |