mirror of
https://github.com/Readarr/Readarr
synced 2026-01-15 03:53:22 +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);
|
|
}
|
|
} |