Removed old architecture. Added new base project structure
This commit is contained in:
11
Moonlight.Client/Models/SidebarItem.cs
Normal file
11
Moonlight.Client/Models/SidebarItem.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Moonlight.Client.Models;
|
||||
|
||||
public class SidebarItem
|
||||
{
|
||||
public string Icon { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string? Group { get; set; }
|
||||
public string Path { get; set; }
|
||||
public int Priority { get; set; }
|
||||
public bool RequiresExactMatch { get; set; } = false;
|
||||
}
|
||||
Reference in New Issue
Block a user