1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-27 18:28:19 +00:00
Sonarr/NzbDrone.Core/Repository/IndexerSetting.cs
2011-06-17 17:10:33 -07:00

18 lines
No EOL
374 B
C#

using System;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
[TableName("IndexerSettings")]
[PrimaryKey("Id", autoIncrement = true)]
public class IndexerSetting
{
public int Id { get; set; }
public Boolean Enable { get; set; }
public String IndexProviderType { get; set; }
public String Name { get; set; }
}
}