mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00: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);
|
|
}
|
|
} |