ProjectLighthouse/ProjectLighthouse.Servers.API/Responses/PlayerCountResponse.cs
Josh c8120b3388
Remove InfluxDB and add /api/v1/playerCount (#664)
* Add /playerCount api

* Modify /playerCount api response

* Remove all InfluxDB components
2023-02-12 23:37:26 -06:00

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();
}