femto-backend/Femto.Common/Integration/IIntegrationEventBus.cs
2025-05-16 17:25:06 +02:00

6 lines
No EOL
131 B
C#

namespace Femto.Common.Integration;
public interface IIntegrationEventBus
{
void Subscribe<T>() where T : IIntegrationEvent;
}