5b963b25a7
- Add Hrynco.RabbitMq class library with RabbitMQ client abstractions - Add Hrynco.RabbitMq.Tests xunit project - ImplicitUsings disabled on all projects Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
8 lines
172 B
C#
8 lines
172 B
C#
namespace Hrynco.RabbitMq;
|
|
|
|
public interface IRabbitMqMessage<TMessageData>
|
|
{
|
|
CorrelationContext CorrelationContext { get; set; }
|
|
TMessageData Data { get; set; }
|
|
}
|