1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Core/Repository/IndexerDefinition.cs

18 lines
380 B
C#
Raw Normal View History

using System;
2011-06-17 17:10:33 -07:00
using PetaPoco;
namespace NzbDrone.Core.Repository
{
2011-07-07 20:27:11 -07:00
[TableName("IndexerDefinitions")]
2011-06-17 17:10:33 -07:00
[PrimaryKey("Id", autoIncrement = true)]
2011-07-07 20:27:11 -07:00
public class IndexerDefinition
{
public int Id { get; set; }
public Boolean Enable { get; set; }
public String IndexProviderType { get; set; }
public String Name { get; set; }
}
}