using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ElectronNET.API.Entities { /// /// Docs: https://electronjs.org/docs/api/structures/extension /// public class Extension { /// /// /// public string Id { get; set; } /// /// Copy of the extension's manifest data. /// public dynamic Manifest { get; set; } /// /// /// public string Name { get; set; } /// /// The extension's file path. /// public string Path { get; set; } /// /// The extension's `chrome-extension://` URL. /// public string Url { get; set; } /// /// /// public string Version { get; set; } } }