1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fix netimport search and add NetImportSyncCommand

This commit is contained in:
Leonardo Galli
2017-01-23 14:04:01 +01:00
parent 2b7afd3272
commit 93d6505f85
6 changed files with 114 additions and 21 deletions
@@ -0,0 +1,12 @@
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.NetImport
{
public class NetImportSyncCommand : Command
{
public override bool SendUpdatesToClient => true;
public int listId = 0;
}
}