Files
laur89 9b6203ceca task: remove extraneous defaults from Isolator/MonitorTask (#9514)
* task: remove extraneous defaults from Isolator/MonitorTask

- ExecuteWithTimeLimit -- the only user of private MonitorTask --
  already defines the defaults for memoryCap & sleepInterval

* fix: typos
2026-06-08 13:56:37 -03:00

36 lines
926 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 constructor
/// </summary>
public CommandLineOption(string name, CommandOptionType type, string description = "")
{
Type = type;
Description = description;
Name = name;
}
}
}