14 lines
353 B
C#
14 lines
353 B
C#
using System.Windows.Controls;
|
|
using System.Windows;
|
|
|
|
namespace Server_Dashboard.Views.DashboardPages.ModuleCRUD {
|
|
/// <summary>
|
|
/// Interaktionslogik für CreateModulePopup.xaml
|
|
/// </summary>
|
|
public partial class CreateModulePopup : Window {
|
|
public CreateModulePopup() {
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|