mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
301 B
C#
12 lines
301 B
C#
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Update.Commands
|
|
{
|
|
public class ApplicationUpdateCommand : Command
|
|
{
|
|
public override bool SendUpdatesToClient => true;
|
|
|
|
public override string CompletionMessage => "Restarting Radarr to apply updates";
|
|
}
|
|
}
|