jellyfin/MediaBrowser.Controller/Providers/EpisodeInfo.cs
2015-09-19 22:25:19 +01:00

18 lines
477 B
C#

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 int? AnimeSeriesIndex { get; set; }
public EpisodeInfo()
{
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
}