using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSSetup { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private string _user = String.Empty; public string user { get {return this._user;} set {this._user = value;} } private string _passwd = String.Empty; public string passwd { get {return this._passwd;} set {this._passwd = value;} } private string _package = String.Empty; public string package { get {return this._package;} set {this._package = value;} } private string _softwareName = String.Empty; public string softwareName { get {return this._softwareName;} set {this._softwareName = value;} } private string _bpPCNS = String.Empty; public string bpPCNS { get {return this._bpPCNS;} set {this._bpPCNS = value;} } private string _bpName = String.Empty; public string bpName { get {return this._bpName;} set {this._bpName = value;} } }