Recreated project with project template
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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
|
||||
}
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user