mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			227 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			227 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Channels
 | 
						|
{
 | 
						|
    public enum ChannelFolderType
 | 
						|
    {
 | 
						|
        Container = 0,
 | 
						|
 | 
						|
        MusicAlbum = 1,
 | 
						|
 | 
						|
        PhotoAlbum = 2,
 | 
						|
 | 
						|
        MusicArtist = 3,
 | 
						|
 | 
						|
        Series = 4,
 | 
						|
 | 
						|
        Season = 5
 | 
						|
    }
 | 
						|
} |