1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-30 18:25:57 -04:00
Files
Radarr/NzbDrone.Core/Instrumentation/Commands/DeleteLogFilesCommand.cs
2013-09-12 15:42:01 -07:00

15 lines
299 B
C#

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