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