New: Add TvdbId to Webhook Episode payload
This commit is contained in:
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; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue