Files
Terminal.Gui/Examples/UICatalog/BenchmarkResults.cs
Tig 0baa881dc5 Fixes #4046 - Moves examples into ./Examples and fixes ./Tests (#4047)
* touching publish.yml

* Moved Examples into ./Examples

* Moved Benchmarks into ./Tests

* Moved Benchmarks into ./Tests

* Moved UICatalog into ./Examples

* Moved UICatalog into ./Examples 2

* Moved tests into ./Tests

* Updated nuget
2025-04-25 09:49:33 -06:00

28 lines
641 B
C#

using System;
using System.Text.Json.Serialization;
namespace UICatalog;
public class BenchmarkResults
{
[JsonInclude]
public string Scenario { get; set; }
[JsonInclude]
public TimeSpan Duration { get; set; }
[JsonInclude]
public int IterationCount { get; set; } = 0;
[JsonInclude]
public int ClearedContentCount { get; set; } = 0;
[JsonInclude]
public int RefreshedCount { get; set; } = 0;
[JsonInclude]
public int UpdatedCount { get; set; } = 0;
[JsonInclude]
public int DrawCompleteCount { get; set; } = 0;
[JsonInclude]
public int LaidOutCount { get; set; } = 0;
}