IW4M-Admin/SharedLibraryCore/Events/Server/ServerCommandExecuteEvent.cs

8 lines
192 B
C#
Raw Permalink Normal View History

2023-02-11 22:03:35 -05:00
namespace SharedLibraryCore.Events.Server;
public class ServerCommandExecuteEvent : GameServerEvent
{
public string Command { get; init; }
public string[] Output { get; init; }
}