1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-02 06:31:51 +02:00
Sonarr/NzbDrone.Core/Messaging/IExecute.cs

9 lines
223 B
C#
Raw Normal View History

2013-09-11 09:33:47 +03:00
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Messaging
{
2013-09-11 09:33:47 +03:00
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
{
void Execute(TCommand message);
}
}