Files
Electron.NET/src/ElectronNET.API/API/Entities/ProcessVersions.cs
2025-11-22 02:24:32 +01:00

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);
}