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:
Mark McDowall 2011-04-27 17:11:08 -07:00
commit 7e946277bb
8 changed files with 52 additions and 4 deletions

View 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
}
}