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

New: Send additional information with Webhook and Custom Scripts

Closes #5059
This commit is contained in:
Devin Buhl
2022-11-06 11:21:28 -05:00
committed by GitHub
parent 209a250079
commit e5d6e569cf
5 changed files with 66 additions and 2 deletions
@@ -15,15 +15,19 @@ namespace NzbDrone.Core.Notifications.Webhook
SeasonNumber = episode.SeasonNumber;
EpisodeNumber = episode.EpisodeNumber;
Title = episode.Title;
Overview = episode.Overview;
AirDate = episode.AirDate;
AirDateUtc = episode.AirDateUtc;
SeriesId = episode.SeriesId;
}
public int Id { get; set; }
public int EpisodeNumber { get; set; }
public int SeasonNumber { get; set; }
public string Title { get; set; }
public string Overview { get; set; }
public string AirDate { get; set; }
public DateTime? AirDateUtc { get; set; }
public int SeriesId { get; set; }
}
}