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