-> IPScanner added
-> PortScanner added
This commit is contained in:
32
Networking/PluginInfo.cs
Normal file
32
Networking/PluginInfo.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using Networking.Pages;
|
||||
using PTConverter.Plugin;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Networking
|
||||
{
|
||||
public class PluginInfo : IPlugin
|
||||
{
|
||||
public string Author => "Kevin Krüger";
|
||||
|
||||
public string Company => "";
|
||||
|
||||
public string PluginName => "Networking";
|
||||
|
||||
public string Description => "This Plugin provides Network features.";
|
||||
|
||||
public string Version => "1.0.0";
|
||||
|
||||
public string IconLink => null;
|
||||
|
||||
public IEnumerable<IPage> RegisterPages => new List<IPage>()
|
||||
{
|
||||
{new IPv4() },
|
||||
{new PortScanner() },
|
||||
{new Pages.IPScanner() }
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user