mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
bc03ad2a18
New: Blacklisting torrents manually New: Details on why a release was blacklisted in the UI New: Blacklist matching take into account indexer, size, date and name
26 lines
824 B
C#
26 lines
824 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Blacklisting
|
|
{
|
|
public class Blacklist : ModelBase
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public Series Series { get; set; }
|
|
public List<int> EpisodeIds { get; set; }
|
|
public string SourceTitle { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public DateTime? PublishedDate { get; set; }
|
|
public long? Size { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
public string Indexer { get; set; }
|
|
public string Message { get; set; }
|
|
public string TorrentInfoHash { get; set; }
|
|
}
|
|
}
|