2025-11-09 12:05:07 +01:00
|
|
|
|
namespace ElectronNET.API.Entities
|
2019-09-25 17:33:57 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Provide metadata about the current loaded Chrome extension
|
|
|
|
|
|
/// </summary>
|
2025-11-22 02:16:10 +01:00
|
|
|
|
/// <yremarks>Project-specific: no matching Electron structure found in MCP docs (electronjs).</yremarks>
|
2019-09-25 17:33:57 +02:00
|
|
|
|
public class ChromeExtensionInfo
|
|
|
|
|
|
{
|
2019-09-26 17:30:21 +02:00
|
|
|
|
/// <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>
|
2019-09-26 13:27:22 +02:00
|
|
|
|
public ChromeExtensionInfo(string name, string version)
|
2019-09-25 17:33:57 +02:00
|
|
|
|
{
|
2019-09-26 13:27:22 +02:00
|
|
|
|
Name = name;
|
|
|
|
|
|
Version = version;
|
2019-09-25 17:33:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Name of the Chrome extension
|
|
|
|
|
|
/// </summary>
|
2019-09-26 13:27:22 +02:00
|
|
|
|
public string Name { get; set; }
|
2019-09-25 17:33:57 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Version of the Chrome extension
|
|
|
|
|
|
/// </summary>
|
2019-09-26 13:27:22 +02:00
|
|
|
|
public string Version { get; set; }
|
2019-09-25 17:33:57 +02:00
|
|
|
|
}
|
2025-11-15 08:05:31 +01:00
|
|
|
|
}
|