mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-23 01:00:28 +03:00
8 lines
163 B
C#
8 lines
163 B
C#
namespace PracticeCalendar.Domain.Common.Interfaces
|
|
{
|
|
public interface IDomainEventService
|
|
{
|
|
Task Publish(DomainEventBase domainEvent);
|
|
}
|
|
}
|