forked from ddrilling/AsbCloudServer
15 lines
256 B
C#
15 lines
256 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DataTable
|
|
{
|
|
[Serializable]
|
|
public class Table
|
|
{
|
|
public IEnumerable<Header> Headers { get; set; }
|
|
|
|
public IEnumerable<IEnumerable<object>> Rows { get; set; }
|
|
|
|
}
|
|
}
|