namespace Dalamud.Console;
///
/// Possible console argument types.
///
internal enum ConsoleArgumentType
{
///
/// A regular string.
///
String,
///
/// A signed integer.
///
Integer,
///
/// A floating point value.
///
Float,
///
/// A boolean value.
///
Bool,
}