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