1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 11:32:07 +00:00
Sonarr/NzbDrone.Common/Messaging/Tracking/TrackedCommandCleanupCommand.cs
Mark McDowall 56cd80d24a TrackedCommands are cleaned up automatically
TrackedCommandCleanupCommand is not tracked
2013-09-01 21:12:35 -07:00

17 lines
383 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Common.Messaging.Tracking
{
public class TrackedCommandCleanupCommand : ICommand
{
public string CommandId { get; private set; }
public TrackedCommandCleanupCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
}
}