(cherry picked from commit 278c7891a3add639b4ff5bc1f4f5e8912dabc897)pull/10440/head
parent
7528882adf
commit
6095819005
@ -0,0 +1,66 @@
|
||||
using System;
|
||||
|
||||
namespace NzbDrone.Core.Parser.Model
|
||||
{
|
||||
[Flags]
|
||||
public enum IndexerFlags
|
||||
{
|
||||
/// <summary>
|
||||
/// Torrent download amount does not count
|
||||
/// </summary>
|
||||
G_Freeleech = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent download amount only counts 50%
|
||||
/// </summary>
|
||||
G_Halfleech = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent upload amount is doubled
|
||||
/// </summary>
|
||||
G_DoubleUpload = 4,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent is a very high quality encode, as applied manually by the PTP staff
|
||||
/// </summary>
|
||||
PTP_Golden = 8,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent from PTP that has been checked (by staff or torrent checkers) for release description requirements
|
||||
/// </summary>
|
||||
PTP_Approved = 16,
|
||||
|
||||
/// <summary>
|
||||
/// Uploader is an internal release group
|
||||
/// </summary>
|
||||
G_Internal = 32,
|
||||
|
||||
// AHD, internal
|
||||
[Obsolete]
|
||||
AHD_Internal = 64,
|
||||
|
||||
/// <summary>
|
||||
/// The release comes from a scene group
|
||||
/// </summary>
|
||||
G_Scene = 128,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent download amount only counts 75%
|
||||
/// </summary>
|
||||
G_Freeleech75 = 256,
|
||||
|
||||
/// <summary>
|
||||
/// Torrent download amount only counts 25%
|
||||
/// </summary>
|
||||
G_Freeleech25 = 512,
|
||||
|
||||
// AHD, internal
|
||||
[Obsolete]
|
||||
AHD_UserRelease = 1024,
|
||||
|
||||
/// <summary>
|
||||
/// The release is nuked
|
||||
/// </summary>
|
||||
Nuked = 2048
|
||||
}
|
||||
}
|
Loading…
Reference in new issue