mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
18 lines
553 B
C#
18 lines
553 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class DownloadIgnoredEvent : IEvent
|
|
{
|
|
public int AuthorId { get; set; }
|
|
public List<int> BookIds { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public string SourceTitle { get; set; }
|
|
public DownloadClientItemClientInfo DownloadClientInfo { get; set; }
|
|
public string DownloadId { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
}
|