Improved event naming
This commit is contained in:
@@ -1,18 +1,5 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public record Enumerate<TValue> :
|
||||
IEnumerate
|
||||
{
|
||||
public object? Key { get; init; }
|
||||
|
||||
public EnumerateMode Mode { get; init; }
|
||||
|
||||
public static Enumerate<TValue, TOptions> With<TOptions>(TOptions options) where TOptions : class
|
||||
{
|
||||
return new Enumerate<TValue, TOptions>(options);
|
||||
}
|
||||
}
|
||||
|
||||
public record Enumerate<TValue, TOptions>(TOptions? Options = null) :
|
||||
IEnumerate
|
||||
where TOptions : class
|
||||
|
||||
Reference in New Issue
Block a user