mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
15 lines
356 B
C#
15 lines
356 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
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; }
|
|
}
|
|
} |