using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTaskNumber { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _lastNumberUsed = 0; public int lastNumberUsed { get {return this._lastNumberUsed;} set {this._lastNumberUsed = value;} } private string _custCode = String.Empty; public string custCode { get {return this._custCode;} set {this._custCode = value;} } private string _projCode = String.Empty; public string projCode { get {return this._projCode;} set {this._projCode = value;} } private string _prefix = String.Empty; public string prefix { get {return this._prefix;} set {this._prefix = value;} } }