recrownedathenaeum/RecrownedAthenaeum.ConsoleTools/CommandProcessor/EngineCommandArgument.cs

19 lines
410 B
C#
Raw Normal View History

2018-12-29 00:52:52 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace RecrownedAthenaeum.Tools.CommandProcessor
{
public class EngineCommandArgument
{
public string invokeString;
public string help;
public EngineCommandArgument(string invokeString, string help)
{
this.invokeString = invokeString;
this.help = help;
}
}
}