using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceItem { 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 _createdBy = 0; public int createdBy { get {return this._createdBy;} set {this._createdBy = value;} } private int _updatedBy = 0; public int updatedBy { get {return this._updatedBy;} set {this._updatedBy = value;} } private int _lastTabCompleted = 0; public int lastTabCompleted { get {return this._lastTabCompleted;} set {this._lastTabCompleted = value;} } private int _userLink = 0; public int userLink { get {return this._userLink;} set {this._userLink = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isDeleted = false; public bool isDeleted { get {return this._isDeleted;} set {this._isDeleted = value;} } private bool _isWizardCompleted = false; public bool isWizardCompleted { get {return this._isWizardCompleted;} set {this._isWizardCompleted = value;} } private string _surfaceLinkItems = String.Empty; public string surfaceLinkItems { get {return this._surfaceLinkItems;} set {this._surfaceLinkItems = value;} } }