Files
Toolkit2/Toolkit.Foundation/AggregateEventArgs.cs
T
2024-05-31 22:50:52 +01:00

8 lines
214 B
C#

namespace Toolkit.Foundation;
public record AggregateEventArgs<TValue, TOptions>(TOptions? Options = null) :
IAggregate
where TOptions : class;
public record AggerateEventArgs<TValue> :
IAggregate;