Lidarr/src/NzbDrone.Core/Download/DownloadFailedEvent.cs

26 lines
826 B
C#
Raw Normal View History

2013-10-22 07:31:36 +00:00
using System;
using System.Collections.Generic;
2013-10-22 07:31:36 +00:00
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Download.TrackedDownloads;
using NzbDrone.Core.Qualities;
2013-10-22 07:31:36 +00:00
namespace NzbDrone.Core.Download
{
public class DownloadFailedEvent : IEvent
{
public DownloadFailedEvent()
{
Data = new Dictionary<string, string>();
}
public Int32 SeriesId { get; set; }
public List<Int32> EpisodeIds { get; set; }
2013-10-22 07:31:36 +00:00
public QualityModel Quality { get; set; }
public String SourceTitle { get; set; }
public String DownloadClient { get; set; }
public String DownloadId { get; set; }
2013-10-25 01:25:04 +00:00
public String Message { get; set; }
public Dictionary<string, string> Data { get; set; }
public TrackedDownload TrackedDownload { get; set; }
2013-10-22 07:31:36 +00:00
}
}