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