Merge pull request #8203 from Shadowghost/nfo-season-names

Implement NFO named season parsing
This commit is contained in:
Cody Robibero
2023-06-10 07:27:54 -06:00
committed by GitHub
6 changed files with 103 additions and 29 deletions

View File

@@ -28,12 +28,16 @@ namespace MediaBrowser.Controller.Entities.TV
public Series()
{
AirDays = Array.Empty<DayOfWeek>();
SeasonNames = new Dictionary<int, string>();
}
public DayOfWeek[] AirDays { get; set; }
public string AirTime { get; set; }
[JsonIgnore]
public Dictionary<int, string> SeasonNames { get; set; }
[JsonIgnore]
public override bool SupportsAddingToPlaylist => true;