File: BenchmarkMetadata.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 BenchmarkMetadata
{
    public string Source { get; set; }
    public string Name { get; set; }
    public string ShortDescription { get; set; }
    public string LongDescription { get; set; }
    public string Format { get; set; }
}