1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Add server status received event including raw response

This commit is contained in:
RaidMax
2024-02-17 15:33:15 -06:00
parent d325993670
commit b286548906
6 changed files with 37 additions and 8 deletions

View File

@ -6,10 +6,11 @@ namespace IW4MAdmin.Application.RConParsers
/// <inheritdoc cref="IStatusResponse"/>
public class StatusResponse : IStatusResponse
{
public string Map { get; set; }
public string GameType { get; set; }
public string Hostname { get; set; }
public int? MaxClients { get; set; }
public EFClient[] Clients { get; set; }
public string Map { get; init; }
public string GameType { get; init; }
public string Hostname { get; init; }
public int? MaxClients { get; init; }
public EFClient[] Clients { get; init; }
public string[] RawResponse { get; set; }
}
}
}