1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 20:03:06 +00:00
Radarr/NzbDrone.Core/Instrumentation/Commands/TrimLogCommand.cs
2013-09-01 21:12:18 -07:00

16 lines
No EOL
334 B
C#

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