mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
19 lines
419 B
C#
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";
|
|
}
|
|
}
|