2025-11-04 17:22:15 +01:00
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An object listing the version strings specific to Electron
|
|
|
|
|
/// </summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
/// <yremarks>Project-specific: no matching Electron structure found in MCP docs (electronjs).</yremarks>
|
2025-11-04 17:22:15 +01:00
|
|
|
/// <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);
|
2025-11-15 08:05:31 +01:00
|
|
|
}
|