mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Revered back to subsonic
Added indexer configuration back-end
This commit is contained in:
@@ -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