mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
12 lines
324 B
C#
12 lines
324 B
C#
using System;
|
|
using BenchmarkDotNet.Mathematics;
|
|
using Robust.Benchmarks.Exporters;
|
|
|
|
namespace Robust.Benchmarks.Migrations;
|
|
|
|
public class BenchmarkRunReport
|
|
{
|
|
public BenchmarkRunParameter[] Parameters { get; set; } = Array.Empty<BenchmarkRunParameter>();
|
|
public Statistics Statistics { get; set; } = default!;
|
|
}
|