1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Indexers/NewznabDefinition.cs

15 lines
356 B
C#
Raw Normal View History

2013-02-23 07:37:23 +03:00
using System;
using NzbDrone.Core.Datastore;
2013-03-02 21:25:39 +03:00
2013-02-23 07:37:23 +03: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; }
}
}