mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-31 11:32:07 +00:00
56cd80d24a
TrackedCommandCleanupCommand is not tracked
17 lines
383 B
C#
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();
|
|
}
|
|
}
|
|
}
|