11 lines
313 B
C#
11 lines
313 B
C#
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;
|
|
} |