mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
17 lines
418 B
C#
17 lines
418 B
C#
using SharedLibraryCore.Interfaces;
|
|
|
|
namespace SharedLibraryCore.Events.Server;
|
|
|
|
public class ServerCommandRequestExecuteEvent : GameServerEvent
|
|
{
|
|
public ServerCommandRequestExecuteEvent(string command, IGameServer server)
|
|
{
|
|
Command = command;
|
|
Server = server;
|
|
}
|
|
|
|
public string Command { get; init; }
|
|
public int? DelayMs { get; init; }
|
|
public int? TimeoutMs { get; init; }
|
|
}
|