Fix more edge cases
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public record Aggregate
|
||||
{
|
||||
public static AggregateEventArgs<TValue, TOptions> As<TValue, TOptions>(TOptions options)
|
||||
where TOptions : class => new(options);
|
||||
|
||||
public static AggerateEventArgs<TValue> As<TValue>() =>
|
||||
new AggerateEventArgs<TValue>();
|
||||
}
|
||||
Reference in New Issue
Block a user