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