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