Files
PTConverter.Plugin/IPage.cs
2022-06-01 14:12:22 +02:00

24 lines
538 B
C#

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();
}
}