This commit is contained in:
Dan Clark
2024-11-29 21:43:17 +00:00
parent 0aaa236cad
commit fd1b7525d3
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ public record ActivateEventArgs<TValue>
{
public TValue? Value { get; }
public ActivateEventArgs(TValue value)
public ActivateEventArgs(TValue? value)
{
Value = value;
}
@@ -19,7 +19,7 @@ public record ActivateEventArgs<TKey, TValue>
{
public TValue? Value { get; }
public ActivateEventArgs(TValue value)
public ActivateEventArgs(TValue? value)
{
Value = value;
}