51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
using IPScanner;
|
|
using PTConverter.Plugin;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Timers;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Networking.Pages
|
|
{
|
|
public class Device
|
|
{
|
|
public string IP { get; set; }
|
|
public string Ping { get; set; }
|
|
public string Host { get; set; }
|
|
public string Identification { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interaktionslogik für Networking.xaml
|
|
/// </summary>
|
|
public partial class IPScanner : UserControl, IPage
|
|
{
|
|
public IPScanner()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
public string GetCategory() => "Networking";
|
|
|
|
public UserControl GetPage() => new IPScanner();
|
|
|
|
public string GetUnderCategory() => "IPScanner";
|
|
|
|
}
|
|
}
|