namespace Toolkit.Foundation; public record Remove { public static RemoveEventArgs As(TValue value) => new(value); public static RemoveEventArgs As() where TValue : new() => new(new TValue()); }