wip
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public record Activate
|
||||
{
|
||||
public static ActivateEventArgs<TSender> As<TSender>(TSender sender) => new(sender);
|
||||
|
||||
public static ActivateEventArgs<TSender> As<TSender>() where TSender : new() => new(new TSender());
|
||||
}
|
||||
Reference in New Issue
Block a user