Started improving server shares and general api controller structure

This commit is contained in:
2025-07-24 18:28:10 +02:00
parent a2db7be26f
commit 1f94752c54
29 changed files with 318 additions and 201 deletions

View File

@@ -1,7 +1,8 @@
namespace MoonlightServers.Shared.Enums;
public enum ServerPermissionType
public enum ServerPermissionLevel
{
None = -1,
Read = 0,
ReadWrite = 1
}