DD.WellWorkover.Cloud/DataTable/Table.cs

15 lines
256 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2021-04-07 18:01:56 +05:00
namespace DataTable
2021-04-07 18:01:56 +05:00
{
[Serializable]
2021-04-07 18:01:56 +05:00
public class Table
{
public IEnumerable<Header> Headers { get; set; }
public IEnumerable<IEnumerable<object>> Rows { get; set; }
}
}