This commit is contained in:
Dan Clark
2024-11-22 18:52:25 +00:00
parent 8a2497be82
commit e809c22cb7
15 changed files with 145 additions and 31 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace Toolkit.Foundation;
public record UpdatedEventArgs<TSender>
{
public TSender? Sender { get; }
public UpdatedEventArgs(TSender sender)
{
Sender = sender;
}
public UpdatedEventArgs()
{
}
}