using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { public class oMergeField { private string _FieldCode = String.Empty; private string _FieldValue = String.Empty; private Type _FieldType = null; public String FieldCode { get { return this._FieldCode; } set { this._FieldCode = value; } } public String FieldValue { get { return this._FieldValue; } set { this._FieldValue = value; } } public Type FieldType { get { return this._FieldType; } set { this._FieldType = value; } } } }