spectre.console/src/Spectre.Console.Cli/ICommandLimiterOfT.cs
2022-05-15 00:09:52 +02:00

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
{
}