using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace HelloTeamcenter.hello { class OriginDataSet { private string datatype = null; public string Datatype { get { return datatype; } set { datatype = value; } } private string refname = null; public string Refname { get { return refname; } set { refname = value; } } private string separator = null; public string Separator { get { return separator; } set { separator = value; } } private string ds_name = null; public string Ds_name { get { return ds_name; } set { ds_name = value; } } public OriginDataSet() { this.datatype = ""; this.refname = ""; this.separator = ""; this.ds_name = ""; this.dsnametable = new Hashtable(); } private Hashtable dsnametable = null; public Hashtable Dsnametable { get { return dsnametable; } set { dsnametable = value; } } } }