BenchmarkResults.cs 640 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Text.Json.Serialization;
  3. namespace UICatalog;
  4. public class BenchmarkResults
  5. {
  6. [JsonInclude]
  7. public string Scenario { get; set; }
  8. [JsonInclude]
  9. public TimeSpan Duration { get; set; }
  10. [JsonInclude]
  11. public int IterationCount { get; set; } = 0;
  12. [JsonInclude]
  13. public int ClearedContentCount { get; set; } = 0;
  14. [JsonInclude]
  15. public int RefreshedCount { get; set; } = 0;
  16. [JsonInclude]
  17. public int UpdatedCount { get; set; } = 0;
  18. [JsonInclude]
  19. public int DrawCompleteCount { get; set; } = 0;
  20. [JsonInclude]
  21. public int LaidOutCount { get; set; } = 0;
  22. }