mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-31 18:35:32 -04:00
7 lines
191 B
C#
7 lines
191 B
C#
namespace NzbDrone.Core.Messaging.Commands
|
|
{
|
|
public interface IExecute<TCommand> : IProcessMessage<TCommand> where TCommand : Command
|
|
{
|
|
void Execute(TCommand message);
|
|
}
|
|
} |