Files
2022-11-01 15:26:08 +00:00

8 lines
227 B
C#

namespace TheXamlGuy.Framework.Core;
public interface IEventBuilder
{
IReadOnlyCollection<IEventBuilderConfiguration> Configurations { get; }
IEventBuilderConfiguration<TEvent> Add<TEvent>() where TEvent : class;
}