mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
6f2dcbf838
Added indexer configuration back-end
17 lines
No EOL
350 B
C#
17 lines
No EOL
350 B
C#
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; }
|
|
}
|
|
} |