Add first event with a key value

This commit is contained in:
Dan Clark
2024-11-29 21:22:18 +00:00
parent cbc0be4c3d
commit 0aaa236cad
2 changed files with 19 additions and 0 deletions
+15
View File
@@ -12,5 +12,20 @@ public record ActivateEventArgs<TValue>
public ActivateEventArgs()
{
}
}
public record ActivateEventArgs<TKey, TValue>
{
public TValue? Value { get; }
public ActivateEventArgs(TValue value)
{
Value = value;
}
public ActivateEventArgs()
{
}
}