Add contextual commands

This commit is contained in:
TheXamlGuy
2024-05-19 14:18:08 +01:00
parent 1b60711ec4
commit 41c7f71a9d
13 changed files with 107 additions and 68 deletions
+12
View File
@@ -0,0 +1,12 @@
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);
}
}