mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
13 lines
322 B
C#
13 lines
322 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.NetImport
|
|
{
|
|
public class NetImportDefinition : ProviderDefinition
|
|
{
|
|
public string Link { get; set; }
|
|
public int ProfileId { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public override bool Enable => Enabled;
|
|
}
|
|
}
|