mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
split MessageAggregator in EventAggregator and CommandExecutor
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace NzbDrone.Core.Messaging.Commands.Tracking
|
||||
{
|
||||
public class ExistingCommand
|
||||
{
|
||||
public Boolean Existing { get; set; }
|
||||
public Command Command { get; set; }
|
||||
|
||||
public ExistingCommand(Boolean exisitng, Command trackedCommand)
|
||||
{
|
||||
Existing = exisitng;
|
||||
Command = trackedCommand;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user