Files
Toolkit2/Toolkit.Foundation/AggerateEventArgs.cs
T
2024-05-19 14:18:08 +01:00

12 lines
302 B
C#

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