mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05: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; }
 | 
						|
    }
 | 
						|
}
 |