Use Value, not sender!!!!!!!!!!!!!!!!!!!!

This commit is contained in:
Dan Clark
2024-11-29 21:20:14 +00:00
parent f9f7339fc6
commit cbc0be4c3d
63 changed files with 193 additions and 192 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
namespace Toolkit.Foundation;
public record ValidateEventArgs<TSender>
public record ValidateEventArgs<TValue>
{
public TSender? Sender { get; }
public TValue? Value { get; }
public ValidateEventArgs(TSender sender)
public ValidateEventArgs(TValue value)
{
Sender = sender;
Value = value;
}
public ValidateEventArgs()