mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-09 10:17:49 +00:00
11 lines
511 B
C#
11 lines
511 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// An object listing the version strings specific to Electron
|
|
/// </summary>
|
|
/// <yremarks>Project-specific: no matching Electron structure found in MCP docs (electronjs).</yremarks>
|
|
/// <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);
|
|
} |