Files
Moonlight/Moonlight/App/Plugin/UI/Servers/ServerTab.cs
2023-07-22 23:44:45 +02:00

11 lines
275 B
C#

using Microsoft.AspNetCore.Components;
namespace Moonlight.App.Plugin.UI.Servers;
public class ServerTab
{
public string Name { get; set; }
public string Route { get; set; }
public string Icon { get; set; }
public RenderFragment Component { get; set; }
}