Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Providers/EpisodeInfo.cs

18 lines
477 B
C#
Raw Normal View History

2015-03-13 15:37:19 -04:00
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
2015-09-19 22:25:19 +01:00
public class EpisodeInfo : ItemLookupInfo
2015-03-13 15:37:19 -04:00
{
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);
}
}
}