10 lines
231 B
C#
10 lines
231 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Aggerate<TValue, TOptions>(TOptions? Options = null) :
|
|
IAggerate
|
|
where TOptions : class
|
|
{
|
|
public object? Key { get; init; }
|
|
|
|
public AggerateMode Mode { get; init; }
|
|
} |