mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-11 12:42:26 +00:00
* Add /playerCount api * Modify /playerCount api response * Remove all InfluxDB components
13 lines
No EOL
330 B
C#
13 lines
No EOL
330 B
C#
namespace LBPUnion.ProjectLighthouse.Servers.API.Responses;
|
|
|
|
public class PlayerCountObject
|
|
{
|
|
public string Game { get; set; } = "";
|
|
public int PlayerCount { get; set; }
|
|
}
|
|
|
|
public class PlayerCountResponse
|
|
{
|
|
public int TotalPlayerCount { get; set; }
|
|
public List<PlayerCountObject> Games { get; set; } = new();
|
|
} |