Added theme saving. Added interfaces for overview pages. Renamed sidebar interface function

This commit is contained in:
2025-02-26 13:09:31 +01:00
parent f4a0aabb61
commit cdc4744f28
20 changed files with 224 additions and 117 deletions

View File

@@ -0,0 +1,6 @@
namespace Moonlight.Client.Interfaces;
public interface IAdminOverviewElementProvider
{
public void ModifyOverview(List<Type> overviewComponents);
}

View File

@@ -0,0 +1,6 @@
namespace Moonlight.Client.Interfaces;
public interface IOverviewElementProvider
{
public void ModifyOverview(List<Type> overviewComponents);
}

View File

@@ -4,5 +4,5 @@ namespace Moonlight.Client.Interfaces;
public interface ISidebarItemProvider
{
public SidebarItem[] Get();
public void ModifySidebar(List<SidebarItem> items);
}