namespace Spectre.Console
{
///
/// Represent a multi selection prompt item.
///
/// The data type.
public interface IMultiSelectionItem : ISelectionItem
where T : notnull
{
///
/// Selects the item.
///
/// The same instance so that multiple calls can be chained.
IMultiSelectionItem Select();
}
}