using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Providers { public class SeasonInfo : ItemLookupInfo { public Dictionary SeriesProviderIds { get; set; } public SeasonInfo() { SeriesProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase); } } }