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; } } }