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