using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceItemCode { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private int _rangeStart = 0; public int rangeStart { get {return this._rangeStart;} set {this._rangeStart = value;} } private int _rangeEnd = 0; public int rangeEnd { get {return this._rangeEnd;} set {this._rangeEnd = value;} } private int _lastUsed = 0; public int lastUsed { get {return this._lastUsed;} set {this._lastUsed = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _status = String.Empty; public string status { get {return this._status;} set {this._status = value;} } }