forked from ddrilling/AsbCloudServer
13 lines
304 B
C#
13 lines
304 B
C#
using System;
|
|
|
|
namespace DataTable
|
|
{
|
|
[Serializable]
|
|
public class Header
|
|
{
|
|
public string Name { get; set; }
|
|
public string Desctiption { get; set; }
|
|
//public System.Type ColumnType { get; set; } = typeof(object);
|
|
public string ColumnType { get; set; }
|
|
}
|
|
} |