mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
16 lines
391 B
C#
16 lines
391 B
C#
|
using System;
|
||
|
using NzbDrone.Core.Datastore;
|
||
|
using NzbDrone.Core.Tv;
|
||
|
|
||
|
namespace NzbDrone.Core.Blacklisting
|
||
|
{
|
||
|
public class Blacklist : ModelBase
|
||
|
{
|
||
|
public int EpisodeId { get; set; }
|
||
|
public int SeriesId { get; set; }
|
||
|
public string SourceTitle { get; set; }
|
||
|
public QualityModel Quality { get; set; }
|
||
|
public DateTime Date { get; set; }
|
||
|
}
|
||
|
}
|