new EventQueuePublisher method overload

This commit is contained in:
2026-01-28 20:04:18 +01:00
Unverified
parent 2ef4a7cba2
commit 761f6f19e5

View File

@@ -3,4 +3,5 @@
public interface IEventQueuePublisher public interface IEventQueuePublisher
{ {
public Task PublishAsync<T>(T data) where T : class; public Task PublishAsync<T>(T data) where T : class;
public Task PublishAsync<T>(string data, Type dataType) where T : class;
} }