mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 07:45:52 +01:00
20 lines
No EOL
410 B
C#
20 lines
No EOL
410 B
C#
using System;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
[TableName("NewznabDefinitions")]
|
|
[PrimaryKey("Id", autoIncrement = true)]
|
|
public class NewznabDefinition
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public Boolean Enable { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
|
|
public String Url { get; set; }
|
|
|
|
public String ApiKey { get; set; }
|
|
}
|
|
} |