Started implementing dynamic server tabs

This commit is contained in:
2025-02-17 21:26:57 +01:00
parent 4c9a2f1824
commit c452e652a2
4 changed files with 73 additions and 62 deletions

View File

@@ -0,0 +1,7 @@
namespace MoonlightServers.Frontend.Models;
public class ServerTab
{
public string Path { get; set; }
public string Name { get; set; }
}