mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 13:44:47 +00:00
18 lines
434 B
C#
18 lines
434 B
C#
namespace ElectronNET.API
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Versions
|
|
{
|
|
/// <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 bool Electron { get; set; }
|
|
}
|
|
} |