7 lines
191 B
7 lines
191 B
12 years ago
|
namespace NzbDrone.Core.Messaging.Commands
|
||
12 years ago
|
{
|
||
12 years ago
|
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
|
||
12 years ago
|
{
|
||
|
void Execute(TCommand message);
|
||
|
}
|
||
|
}
|