using System.Collections.Generic; namespace Spectre.Console.Cli; /// /// Represents a command container. /// internal interface ICommandContainer { /// /// Gets all commands in the container. /// IList Commands { get; } }