mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
41f10d098e
Fixes #7538 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
12 lines
260 B
C#
12 lines
260 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class ProcessMonitoredDownloadsCommand : Command
|
|
{
|
|
public override bool RequiresDiskAccess => true;
|
|
|
|
public override bool IsLongRunning => true;
|
|
}
|
|
}
|