Updated process class

This commit is contained in:
Florian Rappl
2025-11-04 17:22:15 +01:00
parent 2b393079ae
commit 2c544a83e9
5 changed files with 285 additions and 185 deletions

View File

@@ -0,0 +1,10 @@
namespace ElectronNET.API.Entities
{
/// <summary>
/// An object listing the version strings specific to Electron
/// </summary>
/// <param name="Chrome">Value representing Chrome's version string</param>
/// <param name="Electron">Value representing Electron's version string</param>
/// <returns></returns>
public record ProcessVersions(string Chrome, string Electron);
}