mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
15 lines
355 B
C#
15 lines
355 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class NewznabDefinition : ModelBase
|
|
{
|
|
public Boolean Enable { get; set; }
|
|
public String Name { get; set; }
|
|
public String Url { get; set; }
|
|
public String ApiKey { get; set; }
|
|
public bool BuiltIn { get; set; }
|
|
}
|
|
} |