diff --git a/src/ElectronNET.API/API/Entities/ProcessMetric.cs b/src/ElectronNET.API/API/Entities/ProcessMetric.cs index 10162cf..30ef1c3 100644 --- a/src/ElectronNET.API/API/Entities/ProcessMetric.cs +++ b/src/ElectronNET.API/API/Entities/ProcessMetric.cs @@ -1,7 +1,7 @@ namespace ElectronNET.API.Entities { /// - /// + /// Process metrics information. /// public class ProcessMetric { @@ -21,11 +21,9 @@ public CPUUsage Cpu { get; set; } /// - /// Creation time for this process. The time is represented as number of milliseconds since epoch. - /// Since the can be reused after a process dies, it is useful to use both the - /// and the to uniquely identify a process. + /// Creation time for this process in milliseconds since Unix epoch. Can exceed Int32 range and may contain fractional milliseconds. /// - public int CreationTime { get; set; } + public double CreationTime { get; set; } /// /// Memory information for the process.