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

19 lines
576 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.Qualities;
2013-10-22 07:31:36 +00:00
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Download
{
public class DownloadFailedEvent : IEvent
{
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 DownloadClientId { get; set; }
2013-10-25 01:25:04 +00:00
public String Message { get; set; }
2013-10-22 07:31:36 +00:00
}
}