blob: 3af5ec2a3f437b1564f490cdd00a42fc9b76f475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma warning disable CA2227, CS1591
#nullable disable
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
public class SeasonInfo : ItemLookupInfo
{
public SeasonInfo()
{
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
public Dictionary<string, string> SeriesProviderIds { get; set; }
public string SeriesDisplayOrder { get; set; }
}
}
|