16 lines
236 B
C#
16 lines
236 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record CancelEventArgs<TSender>
|
|
{
|
|
public TSender? Sender { get; }
|
|
|
|
public CancelEventArgs(TSender sender)
|
|
{
|
|
Sender = sender;
|
|
}
|
|
|
|
public CancelEventArgs()
|
|
{
|
|
|
|
}
|
|
} |