using System; using System.Collections.Generic; using System.Text; namespace ElectronNET.API.Entities { /// /// Provide metadata about the current loaded Chrome extension /// public class ChromeExtensionInfo { /// /// Initializes a new instance of the class. /// /// The name of the Chrome extension. /// The version of the Chrome extension. public ChromeExtensionInfo(string name, string version) { Name = name; Version = version; } /// /// Name of the Chrome extension /// public string Name { get; set; } /// /// Version of the Chrome extension /// public string Version { get; set; } } }