8 lines
207 B
C#
8 lines
207 B
C#
using MoonlightServers.Shared.Enums;
|
|
|
|
namespace MoonlightServers.ApiServer.Models;
|
|
|
|
public class ServerShareContent
|
|
{
|
|
public Dictionary<string, ServerPermissionLevel> Permissions { get; set; } = new();
|
|
} |