mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +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; }
|
|
}
|
|
} |