mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-20 13:48:16 +08:00
14 lines
294 B
C#
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; }
|
|
} |