7 lines
203 B
C#
7 lines
203 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record ActivationEventArgs<TSynchronize, TValue>(TValue? Value = default) :
|
|
IActivation;
|
|
|
|
public record ActivationEventArgs<TSynchronize>() :
|
|
IActivation; |