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