Files
spectre.console/src/Spectre.Console/Cli/Internal/Modelling/ICommandContainer.cs
2021-12-22 08:51:17 -05:00

14 lines
294 B
C#

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