Files
Servers/MoonlightServers.Frontend/Implementations/SidebarImplementation.cs

22 lines
497 B
C#

using Moonlight.Client.Interfaces;
using Moonlight.Client.Models;
namespace MoonlightServers.Frontend.Implementations;
public class SidebarImplementation : ISidebarItemProvider
{
public SidebarItem[] Get()
{
return
[
new SidebarItem()
{
Name = "Example",
Path = "/example",
Icon = "icon-moon",
Group = "MoonlightServers",
Priority = 1
}
];
}
}