Backend/e-suite.Service.Performance/e-suite.Service.Performance/PerformanceReportTimer.cs
2026-01-20 21:50:10 +00:00

12 lines
382 B
C#

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<PerformanceReportTimer> Timings { get; } = new List<PerformanceReportTimer>();
}