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
16
NzbDrone.Core/Model/IndexerType.cs
Normal file
16
NzbDrone.Core/Model/IndexerType.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum IndexerType
|
||||
{
|
||||
Other = 0,
|
||||
NzbsOrg = 1,
|
||||
NzbMatrix = 2,
|
||||
NzbsRus = 3,
|
||||
Newzbin = 4
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue