namespace TheXamlGuy.Framework.Core { public record EventDescriptor : IEventDescriptor { public EventDescriptor() { } public EventDescriptor(Func? factoryDelegate) { FactoryDelegate = factoryDelegate; } public EventDescriptor(Func? nextDelegate) { NextDelegate = nextDelegate; } public Func? FactoryDelegate { get; } public Func? NextDelegate { get; } } }