#647 correct to ElectronNET.API Process member for versions field

This commit is contained in:
Todd Schavey
2022-01-02 23:11:01 -05:00
parent ba82b9a600
commit 592148116b
3 changed files with 35 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
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; }
}
}