2025-03-15 16:54:20 +03:30

7 lines
110 B
C#

namespace BuildingBlocks.EventStoreDB.Events;
public interface IProjection
{
void When(object @event);
}