Files
Electron.NET/ElectronNET.API/Entities/ProcessVersions.cs

10 lines
393 B
C#
Raw Normal View History

namespace ElectronNET.API
{
/// <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);
}