File: BenchmarkOutput.cs
Web Access
Project: src\src\Components\benchmarkapps\Wasm.Performance\Driver\Wasm.Performance.Driver.csproj (Wasm.Performance.Driver)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Wasm.Performance.Driver;
 
internal sealed class BenchmarkOutput
{
    public List<BenchmarkMetadata> Metadata { get; } = new List<BenchmarkMetadata>();
 
    public List<BenchmarkMeasurement> Measurements { get; } = new List<BenchmarkMeasurement>();
}