2025-03-15 01:39:43 +03:30

7 lines
110 B
C#

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