Sonarr/NzbDrone.Core/Instrumentation/Commands/TrimLogCommand.cs

16 lines
342 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
2013-06-19 01:01:08 +00:00
namespace NzbDrone.Core.Instrumentation.Commands
{
public class TrimLogCommand : ICommand
{
public String CommandId { get; private set; }
2013-08-28 00:51:54 +00:00
public TrimLogCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
2013-06-19 01:01:08 +00:00
}
}