Improved server share permission handling and share ui

This commit is contained in:
2025-07-24 20:19:49 +02:00
parent 1f94752c54
commit 431cdcb260
19 changed files with 270 additions and 151 deletions

View File

@@ -0,0 +1,9 @@
namespace MoonlightServers.Frontend.Models;
public record ServerPermission
{
public string Identifier { get; set; }
public string DisplayName { get; set; }
public string Description { get; set; }
public string Icon { get; set; }
}