mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
7 lines
173 B
C#
7 lines
173 B
C#
namespace CleanArchitecture.Infrastructure.EventSourcing;
|
|
|
|
public interface IEventStoreContext
|
|
{
|
|
public string GetUserEmail();
|
|
public string GetCorrelationId();
|
|
} |