17 lines
514 B
C#
17 lines
514 B
C#
using OwnChar.App.Desktop.UI.MainTabs;
|
|
using Pilz.Plugins.Advanced;
|
|
using Pilz.Plugins.Advanced.UI.Telerik;
|
|
|
|
namespace OwnChar.App.Desktop.Features.MainWindow.MainTabs
|
|
{
|
|
internal class TabMyUserFeature() : PluginModule(FeatureCodes.MainTab, "ownchar.myuser", "My user"), IPluginFeatureProvider<TabMyUserFeature>
|
|
{
|
|
public static TabMyUserFeature Instance { get; } = new();
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return new TabEditChar();
|
|
}
|
|
}
|
|
}
|