Contains all table and cell item information.

If table/column information is detected on the form, the forms recognizer services will attempt to organize each table into cells with row and column information.

/// <summary>
/// CellItem class.
/// </summary>
public class CellsItem
{
	public int Row { get; set; }
	public int Column { get; set; }
	public string Text { get; set; }
}
/// <summary>
/// TablesItem class.
/// </summary>
public class TablesItem
{
	public int Rows { get; set; }
	public int Columns { get; set; }
	public List<CellsItem> Cells { get; set; }
}
/// <summary>
/// PageResultsItem class.
/// </summary>
public class PageResultsItem
{
	public int Page { get; set; }
	public List<TablesItem> Tables { get; set; }
}