Files
Toolkit2/Toolkit.Foundation/NotifyEventArgs.cs
T
Dan Clark 8a2497be82 Updates
2024-11-20 21:25:31 +00:00

16 lines
236 B
C#

namespace Toolkit.Foundation;
public record NotifyEventArgs<TSender>
{
public TSender? Sender { get; }
public NotifyEventArgs(TSender sender)
{
Sender = sender;
}
public NotifyEventArgs()
{
}
}