1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
2013-09-01 21:12:18 -07:00

16 lines
336 B
C#

using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Instrumentation.Commands
{
public class ClearLogCommand : ICommand
{
public String CommandId { get; set; }
public ClearLogCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
}
}