mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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.
24 lines
664 B
C#
24 lines
664 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public class DownloadMessage
|
|
{
|
|
public string Message { get; set; }
|
|
public Series Series { get; set; }
|
|
public Movie Movie { get; set; }
|
|
public EpisodeFile EpisodeFile { get; set; }
|
|
public List<EpisodeFile> OldFiles { get; set; }
|
|
public MovieFile MovieFile { get; set; }
|
|
public List<MovieFile> OldMovieFiles { get; set; }
|
|
public string SourcePath { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Message;
|
|
}
|
|
}
|
|
}
|