namespace ElectronNET.API.Entities
{
///
/// Provide metadata about the current loaded Chrome extension
///
/// Project-specific: no matching Electron structure found in MCP docs (electronjs).
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; }
}
}