mirror of
https://github.com/Radarr/Radarr
synced 2025-01-31 20:03:06 +00:00
16 lines
No EOL
334 B
C#
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();
|
|
}
|
|
}
|
|
} |