mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-30 06:42:51 +08:00

* Renames Spectre.Cli to Spectre.Console.Cli. * Now uses Verify with Spectre.Console.Cli tests. * Removes some duplicate definitions. Closes #168
13 lines
348 B
C#
13 lines
348 B
C#
namespace Spectre.Console.Cli
|
|
{
|
|
/// <summary>
|
|
/// Represents a command limiter.
|
|
/// </summary>
|
|
/// <typeparam name="TSettings">The type of the settings to limit to.</typeparam>
|
|
/// <seealso cref="ICommand" />
|
|
public interface ICommandLimiter<out TSettings> : ICommand
|
|
where TSettings : CommandSettings
|
|
{
|
|
}
|
|
}
|