->Better Structure

This commit is contained in:
Kevin Krüger
2022-06-01 14:14:18 +02:00
parent c66c939707
commit deeeb2d0a3
13 changed files with 25 additions and 0 deletions

View File

@@ -1,23 +0,0 @@
using System.Windows.Controls;
namespace PTConverter.Plugin
{
/// <summary>
/// Represent a Module-Page
/// </summary>
public interface IPage
{
/// <summary>
/// Instance of an Control(XAML-Page)
/// </summary>
UserControl GetPage();
/// <summary>
/// The Main Category
/// </summary>
string GetCategory();
/// <summary>
/// The Undercategory of an Main Category Page
/// </summary>
string GetUnderCategory();
}
}