Files
App/OwnChar.App.Desktop/Features/MainWindow/QuickAction/HomeFeature.cs
2024-05-17 20:43:16 +02:00

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