10 lines
276 B
C#
10 lines
276 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Selection
|
|
{
|
|
public static SelectionEventArgs<TSender?> As<TSender>(TSender? sender) =>
|
|
new(sender);
|
|
|
|
public static SelectionEventArgs<TSender?> As<TSender>() where TSender : new() =>
|
|
new(new TSender());
|
|
} |