2013-09-14 06:36:07 +00:00
|
|
|
namespace NzbDrone.Core.Messaging.Commands
|
2013-04-27 02:03:34 +00:00
|
|
|
{
|
2013-09-11 06:33:47 +00:00
|
|
|
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
|
2013-04-27 02:03:34 +00:00
|
|
|
{
|
|
|
|
void Execute(TCommand message);
|
|
|
|
}
|
|
|
|
}
|