namespace Toolkit.Foundation; public record Insert { public static InsertEventArgs As(int index, TValue value) => new(index, value); public static InsertEventArgs As(int index) where TValue : new() => new(index, new TValue()); }