1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Added aired-before field to kodi metadata to sort specials

closes #3073
This commit is contained in:
netpok
2019-04-19 21:19:39 +02:00
committed by Taloth Saldono
parent be11789a86
commit c07a67ae3c
6 changed files with 38 additions and 4 deletions
@@ -7,6 +7,9 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
public int SeasonNumber { get; set; }
public int EpisodeNumber { get; set; }
public int? AbsoluteEpisodeNumber { get; set; }
public int? AiredAfterSeasonNumber { get; set; }
public int? AiredBeforeSeasonNumber { get; set; }
public int? AiredBeforeEpisodeNumber { get; set; }
public string Title { get; set; }
public string AirDate { get; set; }
public DateTime? AirDateUtc { get; set; }