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
|
|
|
|
|
{
|
2013-08-28 00:51:54 +00:00
|
|
|
|
public String CommandId { get; set; }
|
|
|
|
|
|
|
|
|
|
public TrimLogCommand()
|
|
|
|
|
{
|
|
|
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
|
|
|
}
|
2013-06-19 01:01:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|