1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

New: Add TvdbId to Webhook Episode payload

This commit is contained in:
Collin Heist
2023-11-09 16:57:20 -07:00
committed by GitHub
parent e4b9086a7a
commit 6432f310e7
@@ -19,6 +19,7 @@ namespace NzbDrone.Core.Notifications.Webhook
AirDate = episode.AirDate;
AirDateUtc = episode.AirDateUtc;
SeriesId = episode.SeriesId;
TvdbId = episode.TvdbId;
}
public int Id { get; set; }
@@ -29,5 +30,6 @@ namespace NzbDrone.Core.Notifications.Webhook
public string AirDate { get; set; }
public DateTime? AirDateUtc { get; set; }
public int SeriesId { get; set; }
public int TvdbId { get; set; }
}
}