Add support for Applications

This commit is contained in:
nitsua
2020-10-20 14:15:05 -04:00
committed by Qstick
parent 191d06deca
commit 47fbab02c5
37 changed files with 1607 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.Applications
{
public class ApplicationDefinition : ProviderDefinition
{
public ApplicationSyncLevel SyncLevel { get; set; }
public override bool Enable => SyncLevel == ApplicationSyncLevel.AddOnly || SyncLevel == ApplicationSyncLevel.FullSync;
}
}