7 lines
181 B
C#
7 lines
181 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record AggerateEventArgs<TType, TValue>(TValue? Value = default) :
|
|
IAggregate;
|
|
|
|
public record AggerateEventArgs<TType> :
|
|
IAggregate; |