TG.WXCRM.V4/Core.Common/EventBus/IEventBus.cs

8 lines
152 B
C#

namespace CRM.Core.Common.EventBus
{
public interface IEventBus
{
void Publish<TEvent>(TEvent @event) where TEvent : IEvent;
}
}