mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
13 lines
317 B
C#
13 lines
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; }
|
|
}
|
|
} |