mirror of https://github.com/Radarr/Radarr
26 lines
798 B
C#
26 lines
798 B
C#
|
using NzbDrone.Core.Download.TrackedDownloads;
|
||
|
using NzbDrone.Core.Movies;
|
||
|
using NzbDrone.Core.Parser.Model;
|
||
|
using NzbDrone.Core.Qualities;
|
||
|
|
||
|
namespace NzbDrone.Core.Notifications
|
||
|
{
|
||
|
public class ManualInteractionRequiredMessage
|
||
|
{
|
||
|
public string Message { get; set; }
|
||
|
public Movie Movie { get; set; }
|
||
|
public RemoteMovie RemoteMovie { get; set; }
|
||
|
public TrackedDownload TrackedDownload { get; set; }
|
||
|
public QualityModel Quality { get; set; }
|
||
|
public string DownloadClientType { get; set; }
|
||
|
public string DownloadClientName { get; set; }
|
||
|
public string DownloadId { get; set; }
|
||
|
public GrabbedReleaseInfo Release { get; set; }
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return Message;
|
||
|
}
|
||
|
}
|
||
|
}
|