Radarr/NzbDrone.Core/Indexers/Newznab/NewznabDefinition.cs

13 lines
317 B
C#
Raw Normal View History

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