using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTable { private string _tableName = String.Empty; private string _fieldName = String.Empty; private string _dataType = String.Empty; public string tableName { get { return this._tableName; } set { this._tableName = value; } } public string fieldName { get { return this._fieldName; } set { this._fieldName = value; } } public string dataType { get { return this._dataType; } set { this._dataType = value; } } }