diff options
| author | LJQ <leejunquan7@gmail.com> | 2024-08-22 17:50:13 +0800 |
|---|---|---|
| committer | LJQ <leejunquan7@gmail.com> | 2024-08-22 17:50:13 +0800 |
| commit | bfec33654931cf062a06ed7291a95cc90dec701f (patch) | |
| tree | d0bdc02e9e167f364970f3bff50c04c04f019efe /MediaBrowser.Controller/Providers | |
| parent | 207261a2cf35ce9adf516cafb2d15bfdb62f8aab (diff) | |
Pass Series Display Order information to SeasonInfo
Diffstat (limited to 'MediaBrowser.Controller/Providers')
| -rw-r--r-- | MediaBrowser.Controller/Providers/SeasonInfo.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Providers/SeasonInfo.cs b/MediaBrowser.Controller/Providers/SeasonInfo.cs index 1edceb0e4..3af5ec2a3 100644 --- a/MediaBrowser.Controller/Providers/SeasonInfo.cs +++ b/MediaBrowser.Controller/Providers/SeasonInfo.cs @@ -1,4 +1,5 @@ #pragma warning disable CA2227, CS1591 +#nullable disable using System; using System.Collections.Generic; @@ -13,5 +14,7 @@ namespace MediaBrowser.Controller.Providers } public Dictionary<string, string> SeriesProviderIds { get; set; } + + public string SeriesDisplayOrder { get; set; } } } |
