using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { public class Table { public IEnumerable
Headers { get; set; } public IEnumerable> Rows { get; set; } } }