meysamhadeli 31dc05f580 init
2022-05-07 19:33:06 +04:30

7 lines
113 B
C#

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