2015-03-13 19:37:19 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
2015-09-19 21:25:19 +00:00
|
|
|
public class EpisodeInfo : ItemLookupInfo
|
2015-03-13 19:37:19 +00:00
|
|
|
{
|
|
|
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
|
|
|
|
|
|
|
public int? IndexNumberEnd { get; set; }
|
|
|
|
public int? AnimeSeriesIndex { get; set; }
|
|
|
|
|
2016-04-18 04:25:43 +00:00
|
|
|
public bool IsMissingEpisode { get; set; }
|
|
|
|
public bool IsVirtualUnaired { get; set; }
|
|
|
|
|
2015-03-13 19:37:19 +00:00
|
|
|
public EpisodeInfo()
|
|
|
|
{
|
|
|
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|