mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
34 lines
949 B
C#
34 lines
949 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Provide metadata about the current loaded Chrome extension
|
|
/// </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;
|
|
Version = version;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Name of the Chrome extension
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Version of the Chrome extension
|
|
/// </summary>
|
|
public string Version { get; set; }
|
|
}
|
|
}
|