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