using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceFieldControlData { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceFieldDataLink = 0; public int surfaceFieldDataLink { get {return this._surfaceFieldDataLink;} set {this._surfaceFieldDataLink = value;} } private int _moduleId = 0; public int moduleId { get {return this._moduleId;} set {this._moduleId = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _value = String.Empty; public string value { get {return this._value;} set {this._value = value;} } }