mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
18 lines
374 B
C#
18 lines
374 B
C#
using System;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("IndexerSettings")]
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
|
public class IndexerSetting
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public Boolean Enable { get; set; }
|
|
|
|
public String IndexProviderType { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
}
|
|
} |