2018-12-27 23:27:57 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class SeasonInfo : ItemLookupInfo
|
|
|
|
{
|
|
|
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
|
|
|
|
|
|
|
public SeasonInfo()
|
|
|
|
{
|
|
|
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|