1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 02:18:06 +00:00
Lidarr/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; }
}
}