mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Revered back to subsonic
Added indexer configuration back-end
This commit is contained in:
17
NzbDrone.Core/Repository/IndexerSetting.cs
Normal file
17
NzbDrone.Core/Repository/IndexerSetting.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
public class IndexerSetting
|
||||
{
|
||||
[SubSonicPrimaryKey(true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public Boolean Enable { get; set; }
|
||||
|
||||
public String IndexProviderType { get; set; }
|
||||
|
||||
public String Name { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user