Lidarr/src/NzbDrone.Core/Configuration/ResetApiKeyCommand.cs

10 lines
202 B
C#
Raw Normal View History

using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Configuration
{
public class ResetApiKeyCommand : Command
{
2016-12-09 06:54:15 +00:00
public override bool SendUpdatesToClient => true;
}
}