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

18 lines
443 B
C#

namespace ElectronNET.API
{
/// <summary>
///
/// </summary>
public class ProcessVersions
{
/// <summary>
/// Gets or sets a value representing Chrome's version string.
/// </summary>
public string Chrome { get; set; }
/// <summary>
/// Gets or sets a value representing Electron's version string.
/// </summary>
public string Electron { get; set; }
}
}