You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
456 B
19 lines
456 B
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public class DownloadFailedMessage
|
|
{
|
|
public string Message { get; set; }
|
|
public string SourceTitle { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public string DownloadClient { get; set; }
|
|
public string DownloadId { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Message;
|
|
}
|
|
}
|
|
}
|