mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
9 lines
200 B
C#
9 lines
200 B
C#
namespace NzbDrone.Core.Messaging.Commands
|
|
{
|
|
public interface IExecute<TCommand> : IProcessMessage<TCommand>
|
|
where TCommand : Command
|
|
{
|
|
void Execute(TCommand message);
|
|
}
|
|
}
|