1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/NzbDrone.Core/Indexers/NewznabDefinition.cs

15 lines
356 B
C#
Raw Normal View History

2013-02-23 05:37:23 +01:00
using System;
using NzbDrone.Core.Datastore;
2013-03-02 19:25:39 +01:00
2013-02-23 05:37:23 +01:00
namespace NzbDrone.Core.Indexers
{
public class NewznabDefinition : ModelBase
{
public Boolean Enabled { get; set; }
public String Name { get; set; }
public String Url { get; set; }
public String ApiKey { get; set; }
public bool BuiltIn { get; set; }
}
}