17 lines
526 B
C#
17 lines
526 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 TabMyGroupsFeature() : PluginModule(FeatureCodes.MainTab, "ownchar.mygroups", "My groups"), IPluginFeatureProvider<TabMyGroupsFeature>
|
|
{
|
|
public static TabMyGroupsFeature Instance { get; } = new();
|
|
|
|
protected override PluginModuleUI CreateNewUI()
|
|
{
|
|
return new TabGroupsView();
|
|
}
|
|
}
|
|
}
|