lidarr/NzbDrone.Core/Instrumentation/Commands/ClearLogCommand.cs
2013-09-11 17:42:53 -07:00

18 lines
No EOL
361 B
C#

using System;
using NzbDrone.Common;
using NzbDrone.Core.Messaging;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Instrumentation.Commands
{
public class ClearLogCommand : Command
{
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}