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