mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-02 19:42:58 +00:00
8 lines
148 B
C#
8 lines
148 B
C#
using RabbitMQ.Client;
|
|
|
|
namespace CleanArchitecture.Domain.Rabbitmq.Actions;
|
|
|
|
public interface IRabbitMqAction
|
|
{
|
|
void Perform(IModel channel);
|
|
} |