mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
7 lines
110 B
C#
7 lines
110 B
C#
namespace BuildingBlocks.EventStoreDB.Events;
|
|
|
|
public interface IProjection
|
|
{
|
|
void When(object @event);
|
|
}
|