Update server status max player

This commit is contained in:
2022-05-21 09:28:10 +08:00
parent 7f10eb8ac4
commit 563cee5c4c
2 changed files with 7 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ namespace GrasscutterTools.DispatchServer.Model
[JsonProperty("playerCount")]
public int PlayerCount { get; set; }
[JsonProperty("MaxPlayer")]
public int MaxPlayer { get; set; } = -1;
[JsonProperty("version")]
public string Version { get; set; }
}