33 lines
772 B
C#
33 lines
772 B
C#
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 Pages.PortScanner() },
|
|
{new Pages.IPScanner() }
|
|
};
|
|
}
|
|
}
|