mirror of
https://github.com/Radarr/Radarr
synced 2025-12-24 01:10:41 +01:00
* Bare bones of notifications working. * Add MovieDownload event handler To allow Download notificaitons * Update pushover text to indicate movie * Initial Notification Support On Download and On Grab notifications should work. * Telegram Notification Text * Update Custom Script For Movies * Update PP script WiKi page Also added wiki page to Radarr wiki.
21 lines
552 B
C#
21 lines
552 B
C#
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public class GrabMessage
|
|
{
|
|
public string Message { get; set; }
|
|
public Series Series { get; set; }
|
|
public Movie Movie { get; set; }
|
|
public RemoteMovie RemoteMovie { get; set; }
|
|
public RemoteEpisode Episode { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Message;
|
|
}
|
|
}
|
|
}
|