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