Files
Prowlarr-Prowlarr/src/NzbDrone.Core/Applications/ApplicationIndexerSyncCommand.cs
Mark McDowall 2cacfba81f Fixed: Task progress messages in the UI
(cherry picked from commit c6417337812f3578a27f9dc1e44fdad80f557271)
2024-03-22 11:38:56 +02:00

19 lines
419 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Applications
{
public class ApplicationIndexerSyncCommand : Command
{
public bool ForceSync { get; set; }
public ApplicationIndexerSyncCommand()
{
ForceSync = false;
}
public override bool SendUpdatesToClient => true;
public override string CompletionMessage => "Completed";
}
}