mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			594 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			594 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
#pragma warning disable CA2227, CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Providers
 | 
						|
{
 | 
						|
    public class EpisodeInfo : ItemLookupInfo
 | 
						|
    {
 | 
						|
        public EpisodeInfo()
 | 
						|
        {
 | 
						|
            SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 | 
						|
        }
 | 
						|
 | 
						|
        public Dictionary<string, string> SeriesProviderIds { get; set; }
 | 
						|
 | 
						|
        public int? IndexNumberEnd { get; set; }
 | 
						|
 | 
						|
        public bool IsMissingEpisode { get; set; }
 | 
						|
 | 
						|
        public string SeriesDisplayOrder { get; set; }
 | 
						|
    }
 | 
						|
}
 |