mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			404 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			404 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Updates
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Enum PackageType
 | 
						|
    /// </summary>
 | 
						|
    public enum PackageTargetSystem
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Server
 | 
						|
        /// </summary>
 | 
						|
        Server,
 | 
						|
        /// <summary>
 | 
						|
        /// MB Theater
 | 
						|
        /// </summary>
 | 
						|
        MBTheater,
 | 
						|
        /// <summary>
 | 
						|
        /// MB Classic
 | 
						|
        /// </summary>
 | 
						|
        MBClassic
 | 
						|
    }
 | 
						|
}
 |