2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class EpisodeInfo : ItemLookupInfo
|
|
|
|
{
|
|
|
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
|
|
|
|
|
|
|
public int? IndexNumberEnd { get; set; }
|
|
|
|
|
|
|
|
public bool IsMissingEpisode { get; set; }
|
2020-03-09 07:05:03 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string SeriesDisplayOrder { get; set; }
|
|
|
|
|
|
|
|
public EpisodeInfo()
|
|
|
|
{
|
|
|
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 12:30:58 -07:00
|
|
|
}
|