1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Failed downloads are added to history

This commit is contained in:
Mark McDowall
2013-10-22 00:31:36 -07:00
parent 2e1b921543
commit e64d2f33d6
18 changed files with 444 additions and 19 deletions
@@ -0,0 +1,16 @@
using System;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Download
{
public class DownloadFailedEvent : IEvent
{
public Series Series { get; set; }
public Episode Episode { get; set; }
public QualityModel Quality { get; set; }
public String SourceTitle { get; set; }
public String DownloadClient { get; set; }
public String DownloadClientId { get; set; }
}
}