mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
		
			
				
	
	
		
			16 lines
		
	
	
		
			296 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			296 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Model.Channels
 | |
| {
 | |
|     public enum ChannelItemSortField
 | |
|     {
 | |
|         Name = 0,
 | |
|         CommunityRating = 1,
 | |
|         PremiereDate = 2,
 | |
|         DateCreated = 3,
 | |
|         Runtime = 4,
 | |
|         PlayCount = 5,
 | |
|         CommunityPlayCount = 6
 | |
|     }
 | |
| }
 |