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