Files
Toolkit2/Toolkit.Foundation/AggregateEventArgs.cs
T
2024-06-02 15:00:59 +01:00

7 lines
181 B
C#

namespace Toolkit.Foundation;
public record AggerateEventArgs<TType, TValue>(TValue? Value = default) :
IAggregate;
public record AggerateEventArgs<TType> :
IAggregate;