mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
Indexer flags implementation. (#1377) Will be further finalized over the next few weeks with Freelech, preferring of certain flags, etc
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Text;
|
||||
using NzbDrone.Core.Indexers;
|
||||
|
||||
@@ -26,6 +26,8 @@ namespace NzbDrone.Core.Parser.Model
|
||||
public string Codec { get; set; }
|
||||
public string Resolution { get; set; }
|
||||
|
||||
public IndexerFlags IndexerFlags { get; set; }
|
||||
|
||||
public int Age
|
||||
{
|
||||
get
|
||||
@@ -91,4 +93,11 @@ namespace NzbDrone.Core.Parser.Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum IndexerFlags
|
||||
{
|
||||
PTP_Golden = 1, //PTP
|
||||
PTP_Approved = 2, //PTP
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user