DD.WellWorkover.Cloud/ConsoleApp1/Table.cs

14 lines
226 B
C#
Raw Normal View History

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