chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:02:50 +08:00
commit 0fc60fdcb1
5008 changed files with 910633 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
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 constructor
/// </summary>
public CommandLineOption(string name, CommandOptionType type, string description = "")
{
Type = type;
Description = description;
Name = name;
}
}
}