mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
15 lines
419 B
C#
15 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IW4ScriptCommands
|
|
{
|
|
class CommandInfo
|
|
{
|
|
public string Command { get; set; }
|
|
public int ClientNumber { get; set; }
|
|
public List<string> CommandArguments { get; set; } = new List<string>();
|
|
public override string ToString() => $"{Command};{ClientNumber},{string.Join(',', CommandArguments)}";
|
|
}
|
|
}
|