Projektdateien hinzufügen.

This commit is contained in:
Kevin Krüger
2022-06-01 14:12:22 +02:00
parent ee5602434c
commit c66c939707
5 changed files with 166 additions and 0 deletions

23
IPage.cs Normal file
View File

@@ -0,0 +1,23 @@
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();
}
}