- Added XML documentation on ChromeExtensionInfo constructor

This commit is contained in:
Guillaume
2019-09-26 17:30:21 +02:00
parent a32b50f86f
commit 8bf10c370c

View File

@@ -9,6 +9,11 @@ namespace ElectronNET.API.Entities
/// </summary>
public class ChromeExtensionInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="ChromeExtensionInfo"/> class.
/// </summary>
/// <param name="name">The name of the Chrome extension.</param>
/// <param name="version">The version of the Chrome extension.</param>
public ChromeExtensionInfo(string name, string version)
{
Name = name;