mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
18 lines
443 B
C#
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; }
|
|
}
|
|
} |