mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
IndexerType added, this will store the source indexer in history, so users can see (if they care) and we can add an icon if we want.
This commit is contained in:
parent
de003b9774
commit
7e946277bb
8 changed files with 52 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Repository.Quality;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
|
@ -14,6 +15,7 @@ namespace NzbDrone.Core.Repository
|
|||
public QualityTypes Quality { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
public bool IsProper { get; set; }
|
||||
public IndexerType? Indexer { get; set; }
|
||||
|
||||
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
||||
public virtual Episode Episode { get; protected set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue