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