Radarr/src/NzbDrone.Core/Blocklisting/ClearBlocklistCommand.cs

10 lines
204 B
C#
Raw Normal View History

using NzbDrone.Core.Messaging.Commands;
2021-08-19 19:13:14 +00:00
namespace NzbDrone.Core.Blocklisting
{
2021-08-19 19:13:14 +00:00
public class ClearBlocklistCommand : Command
{
2016-12-09 06:54:15 +00:00
public override bool SendUpdatesToClient => true;
}
2019-12-22 21:24:10 +00:00
}