mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-24 05:31:30 +02: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);
|
|
}
|
|
} |