Files
Prowlarr-Prowlarr/src/NzbDrone.Core/NetImport/NetImportSyncCommand.cs
2017-01-23 14:04:01 +01:00

12 lines
232 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.NetImport
{
public class NetImportSyncCommand : Command
{
public override bool SendUpdatesToClient => true;
public int listId = 0;
}
}