16 lines
226 B
C#
16 lines
226 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record CloseEventArgs<TValue>
|
|
{
|
|
public TValue? Value { get; }
|
|
|
|
public CloseEventArgs(TValue value)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
public CloseEventArgs()
|
|
{
|
|
|
|
}
|
|
} |