Files
quantconnect--lean/Configuration/CommandLineOption.cs
T
Gerardo Salazar 254d0896f1 Replaces Microsoft.Extensions.CommandLineUtils with McMaster CLI utils (#5255)
* Replaces Microsoft.Extensions.CommandLineUtils with McMaster CLI utils

  * Updates ValueTuple to 5.0.0 for compatibility with package.

* Retrigger build

* Retrigger build
2021-02-03 19:56:14 -03:00

36 lines
928 B
C#

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