8 lines
227 B
C#
8 lines
227 B
C#
namespace TheXamlGuy.Framework.Core;
|
|
|
|
public interface IEventBuilder
|
|
{
|
|
IReadOnlyCollection<IEventBuilderConfiguration> Configurations { get; }
|
|
|
|
IEventBuilderConfiguration<TEvent> Add<TEvent>() where TEvent : class;
|
|
} |