Projektdateien hinzufügen.
This commit is contained in:
30
Electronics/PluginInfo.cs
Normal file
30
Electronics/PluginInfo.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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() }
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user