mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			529 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			529 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    public interface IHasSeries
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the name of the series.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name of the series.</value>
 | 
						|
        string SeriesName { get; set; }
 | 
						|
        string FindSeriesName();
 | 
						|
        string FindSeriesSortName();
 | 
						|
        Guid SeriesId { get; set; }
 | 
						|
        Guid FindSeriesId();
 | 
						|
        string SeriesPresentationUniqueKey { get; set; }
 | 
						|
        string FindSeriesPresentationUniqueKey();
 | 
						|
    }
 | 
						|
}
 |