namespace Toolkit.Foundation; public class Notify { public static NotifyEventArgs As(TSender sender) => new(sender); public static NotifyEventArgs As() where TSender : new() => new(new TSender()); }