This commit is contained in:
Dan Clark
2024-11-20 21:25:31 +00:00
parent 8466d23aa6
commit 8a2497be82
27 changed files with 356 additions and 37 deletions
+14 -1
View File
@@ -1,3 +1,16 @@
namespace Toolkit.Foundation;
public record QueryEventArgs<TSender>(TSender Sender);
public record QueryEventArgs<TSender>
{
public TSender? Sender { get; }
public QueryEventArgs(TSender sender)
{
Sender = sender;
}
public QueryEventArgs()
{
}
}