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

fix: whitelist state is now reflected in server's configuration page

This commit is contained in:
2024-05-14 07:25:59 +02:00
parent 2dea13e5c9
commit fd688ebc5d
2 changed files with 2 additions and 1 deletions

View File

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