using System;
namespace Spectre.Console.Cli;
///
/// Represents a command parameter.
///
public interface ICommandParameterInfo
{
///
/// Gets the property name.
///
/// The property name.
public string PropertyName { get; }
///
/// Gets the parameter type.
///
public Type ParameterType { get; }
///
/// Gets the description.
///
/// The description.
public string? Description { get; }
}