mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-17 17:32:50 +08:00
11 lines
309 B
C#
11 lines
309 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
|
|
{
|
|
} |