1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Core/Indexers/Newznab/NewznabDefinition.cs
2013-04-07 00:30:37 -07:00

13 lines
No EOL
317 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers.Newznab
{
public class NewznabDefinition : ModelBase
{
public Boolean Enable { get; set; }
public String Name { get; set; }
public String Url { get; set; }
public String ApiKey { get; set; }
}
}