diff --git a/src/ElectronNET.API/API/Entities/ProcessMetric.cs b/src/ElectronNET.API/API/Entities/ProcessMetric.cs index ce9a8a1..10162cf 100644 --- a/src/ElectronNET.API/API/Entities/ProcessMetric.cs +++ b/src/ElectronNET.API/API/Entities/ProcessMetric.cs @@ -38,9 +38,20 @@ public bool Sandboxed { get; set; } /// - /// One of the following values: + /// One of the following values: /// untrusted | low | medium | high | unknown /// public string IntegrityLevel { get; set; } + + /// + /// The name of the process. + /// Examples for utility: Audio Service, Content Decryption Module Service, Network Service, Video Capture, etc. + /// + public string Name { get; set; } + + /// + /// The non-localized name of the process. + /// + public string ServiceName { get; set; } } } \ No newline at end of file