1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00:00
Sonarr/NzbDrone.Core/Messaging/Commands/IExecute.cs

7 lines
No EOL
191 B
C#

namespace NzbDrone.Core.Messaging.Commands
{
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
{
void Execute(TCommand message);
}
}