1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Indexers/Newznab/NewznabDefinition.cs

13 lines
317 B
C#
Raw Normal View History

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