1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 13:14:58 +00:00
Sonarr/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();
}
}
}