sonarr-repo-only/src/NzbDrone.Core/Configuration/ResetApiKeyCommand.cs

16 lines
286 B
C#

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Configuration
{
public class ResetApiKeyCommand : Command
{
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}