namespace Toolkit.Foundation; public record AggerateEventArgs : IAggerate { public object? Key { get; init; } public static Aggerate With(TOptions options) where TOptions : class { return new Aggerate(options); } }