You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-07-05 00:49:20 +02:00
17 lines
350 B
C#
17 lines
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; }
|
||
|
}
|
||
|
}
|