1
1
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2025-07-13 06:39:41 -04:00

feat: show whitelisted players in invites menu

This commit is contained in:
2024-05-13 21:24:19 +02:00
parent fbc1e64d18
commit 9115402ff1
7 changed files with 174 additions and 17 deletions

View File

@ -15,6 +15,7 @@
public bool Online { get; set; }
public List<Op> Ops { get; set; } = null!;
public List<Ban> Banlist { get; set; } = null!;
public List<Whitelist> Whitelist { get; set; } = null!;
public string OwnersToken { get; set; } = string.Empty;
}

View File

@ -0,0 +1,9 @@

namespace MyMcRealms.MyMcAPI.Responses
{
public class ConsoleResponse
{
public bool Success { get; set; }
public string Message { get; set; } = null!;
}
}