jellyfin/MediaBrowser.Controller/Providers/SeasonInfo.cs

16 lines
425 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
2015-09-19 23:25:19 +02:00
public class SeasonInfo : ItemLookupInfo
2015-03-13 20:37:19 +01:00
{
public Dictionary<string, string> SeriesProviderIds { get; set; }
public int? AnimeSeriesIndex { get; set; }
public SeasonInfo()
{
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
}