mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
18 lines
380 B
C#
18 lines
380 B
C#
using System;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("IndexerDefinitions")]
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
|
public class IndexerDefinition
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public Boolean Enable { get; set; }
|
|
|
|
public String IndexProviderType { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
}
|
|
} |