31 lines
667 B
C#
31 lines
667 B
C#
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<IPage> IPlugin.RegisterPages => new List<IPage>()
|
|
{
|
|
{ new CapacitorCalculator() },
|
|
{ new ResistorCalculator() }
|
|
};
|
|
}
|
|
}
|