18 lines
555 B
C#
18 lines
555 B
C#
using OwnChar.App.Desktop.Features.MainWindow.MainTabs;
|
|
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
|
|
namespace OwnChar.App.Desktop.Features.MainWindow.QuickAction
|
|
{
|
|
internal class HomeFeature() : PluginModule(FeatureCodes.QuickAction, "ownchar.home", "Home"), IPluginFeatureProvider<TabMyUserFeature>
|
|
{
|
|
public static TabMyUserFeature Instance { get; } = new();
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return null;
|
|
//return new TabEditChar();
|
|
}
|
|
}
|
|
}
|