mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
15 lines
374 B
C#
15 lines
374 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Providers
|
||
|
{
|
||
|
public class SeasonInfo : ItemLookupInfo
|
||
|
{
|
||
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
||
|
|
||
|
public SeasonInfo()
|
||
|
{
|
||
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||
|
}
|
||
|
}
|
||
|
}
|