#nullable disable
using System.Collections;
namespace Terminal.Gui.Views;
///
/// sub-interface for and . See also
/// /
///
public interface IListCollectionNavigator : ICollectionNavigator
{
/// The collection of objects to search. is used to search the collection.
IList Collection { get; set; }
}