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