DD.WellWorkover.Cloud/ConsoleApp1/Table.cs

18 lines
316 B
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
public class Table
{
public IEnumerable<Header> Headers { get; set; }
public IEnumerable<IEnumerable<object>> Rows { get; set; }
}
}