using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Providers { public class EpisodeInfo : ItemLookupInfo { public Dictionary SeriesProviderIds { get; set; } public int? IndexNumberEnd { get; set; } public bool IsMissingEpisode { get; set; } public EpisodeInfo() { SeriesProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); } } }