mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
16 lines
404 B
C#
16 lines
404 B
C#
using NexusForever.WorldServer.Command.Context;
|
|
|
|
namespace NexusForever.WorldServer.Command
|
|
{
|
|
public class PendingCommand
|
|
{
|
|
public ICommandContext Context { get; }
|
|
public string CommandText { get; }
|
|
|
|
public PendingCommand(ICommandContext context, string commandText)
|
|
{
|
|
Context = context;
|
|
CommandText = commandText;
|
|
}
|
|
}
|
|
}
|