This commit is contained in:
Rene Schwarz
2021-04-11 23:29:13 +02:00
parent ca432897af
commit cf7b9abcf0
52 changed files with 1281 additions and 142 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Text;
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 Server_Dashboard.Controls.ServerModules {
/// <summary>
/// Interaktionslogik für ServerModule.xaml
/// </summary>
public partial class ServerModule : UserControl {
public ServerModule() {
InitializeComponent();
}
}
}