namespace e_suite.Service.Performance; public class PerformanceReportTimer { public string Name { get; set; } = null!; public long TimePoint { get; set; } public long TotalTimeNS { get; set; } public double TotalTimeMS => (double)TotalTimeNS / 1000000; public List Timings { get; } = new List(); }