nexusforever/Source/NexusForever.WorldServer/Command/Static/CommandResult.cs

12 lines
225 B
C#

namespace NexusForever.WorldServer.Command.Static
{
public enum CommandResult
{
Ok,
NoPermission,
NoCommand,
InvalidParameters,
InvalidContext,
InvalidTarget
}
}