namespace Terminal.Gui { /// /// Provides filtering for a . /// public interface ITreeViewFilter where T : class { /// /// Return if the should /// be included in the tree. /// bool IsMatch (T model); } }