ProjectLighthouse/ProjectLighthouse.Servers.API/Responses/PlayerListResponse.cs
Josh 0af064ad1e
Some checks failed
Continuous Integration / Build & Test (map[database:true fullName:ubuntu-latest prettyName:Linux webTest:true]) (push) Has been cancelled
Upload Translations to Crowdin / crowdin-sync (push) Has been cancelled
Build Docker Image / Build and Publish (push) Has been cancelled
Implement player count per platform and player list API endpoints (#1014)
* Implement player count per platform and player list API endpoints

* Fix inconsistencies in the XML documentation

* Update PlayerListResponse.cs
2024-08-29 01:17:03 +00:00

13 lines
343 B
C#

namespace LBPUnion.ProjectLighthouse.Servers.API.Responses;
public class PlayerListResponse
{
public required List<PlayerListObject> Players { get; set; }
}
public class PlayerListObject
{
public required string Username { get; set; }
public required string Game { get; set; }
public required string Platform { get; set; }
}