mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 18:47:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			408 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			408 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Controller.Entities;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Sorting
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IBaseItemComparer
 | |
|     /// </summary>
 | |
|     public interface IBaseItemComparer : IComparer<BaseItem>
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the name.
 | |
|         /// </summary>
 | |
|         /// <value>The name.</value>
 | |
|         string Name { get; }
 | |
|     }
 | |
| }
 |