mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
Some checks failed
* Implement player count per platform and player list API endpoints * Fix inconsistencies in the XML documentation * Update PlayerListResponse.cs
13 lines
343 B
C#
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; }
|
|
}
|