mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-06 21:28:53 +00:00
10 lines
401 B
C#
10 lines
401 B
C#
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);
|
|
} |