1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/NzbDrone.Core/Repository/IndexerDefinition.cs

18 lines
380 B
C#
Raw Normal View History

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