using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceLink { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceId = 0; public int surfaceId { get {return this._surfaceId;} set {this._surfaceId = value;} } private int _linkedSurfaceId = 0; public int linkedSurfaceId { get {return this._linkedSurfaceId;} set {this._linkedSurfaceId = value;} } private int _filterField = 0; public int filterField { get {return this._filterField;} set {this._filterField = value;} } private string _filterValue = String.Empty; public string filterValue { get {return this._filterValue;} set {this._filterValue = value;} } }