mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-28 23:07:13 -04:00
22 lines
554 B
C#
22 lines
554 B
C#
using NzbDrone.Core.Movies;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public class GrabMessage
|
|
{
|
|
public string Message { get; set; }
|
|
public Movie Movie { get; set; }
|
|
public RemoteMovie RemoteMovie { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public string DownloadClient { get; set; }
|
|
public string DownloadId { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Message;
|
|
}
|
|
}
|
|
}
|