using McMaster.Extensions.CommandLineUtils;
namespace QuantConnect.Configuration
{
///
/// Auxiliary class to keep information about a specific command line option
///
public class CommandLineOption
{
///
/// Command line option type
///
public CommandOptionType Type { get; }
///
/// Command line option description
///
public string Description { get; }
///
/// Command line option name
///
public string Name { get; }
///
/// Command line option constructor
///
public CommandLineOption(string name, CommandOptionType type, string description = "")
{
Type = type;
Description = description;
Name = name;
}
}
}