namespace Terminal.Gui; /// /// Interface for all which present an object per row (of type /// ). /// public interface IEnumerableTableSource : ITableSource { /// Return all objects in the table. IEnumerable GetAllObjects (); /// Return the object on the given row. T GetObjectOnRow (int row); }