You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.2 KiB
59 lines
1.2 KiB
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; }
|
|
}
|
|
|
|
|
|
}
|
|
}
|