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

@ -0,0 +1,9 @@
using SharedLibraryCore.Interfaces;
namespace SharedLibraryCore.Events.Server;
public class ServerStatusReceiveEvent : GameServerEvent
{
public IStatusResponse Response { get; set; }
public string RawData { get; set; }
}