Skip to content

Commit 0cfadb3

Browse files
committed
Updated process metric
1 parent 568c785 commit 0cfadb3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/ElectronNET.API/API/Entities/ProcessMetric.cs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,20 @@ public class ProcessMetric
3838
public bool Sandboxed { get; set; }
3939

4040
/// <summary>
41-
/// One of the following values:
41+
/// One of the following values:
4242
/// untrusted | low | medium | high | unknown
4343
/// </summary>
4444
public string IntegrityLevel { get; set; }
45+
46+
/// <summary>
47+
/// The name of the process.
48+
/// Examples for utility: Audio Service, Content Decryption Module Service, Network Service, Video Capture, etc.
49+
/// </summary>
50+
public string Name { get; set; }
51+
52+
/// <summary>
53+
/// The non-localized name of the process.
54+
/// </summary>
55+
public string ServiceName { get; set; }
4556
}
4657
}

0 commit comments

Comments
 (0)