12 lines
382 B
C#
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>();
|
|
}
|