using PTConverter.Plugin; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Electronics { class PluginInfo : IPlugin { public string Author => "Kevin Krüger"; public string Company => "PeaceToke"; public string PluginName => "Electronics"; public string Description => ""; public string Version => "1.0.0"; public string IconLink => null; IEnumerable IPlugin.RegisterPages => new List() { { new CapacitorCalculator() }, { new ResistorCalculator() } }; } }