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