Files
Toolkit2/Toolkit.Foundation/ActivatedEventArgs.cs
T
2024-11-29 21:20:14 +00:00

16 lines
238 B
C#

namespace Toolkit.Foundation;
public record ActivatedEventArgs<TValue>
{
public TValue? Value { get; }
public ActivatedEventArgs(TValue value)
{
Value = value;
}
public ActivatedEventArgs()
{
}
}