mirror of
https://github.com/Radarr/Radarr
synced 2026-01-17 04:53:15 +01:00
7 lines
No EOL
191 B
C#
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);
|
|
}
|
|
} |