using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSMsvResponseLine { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _msvResponseId = 0; public int msvResponseId { get {return this._msvResponseId;} set {this._msvResponseId = value;} } private DateTime _fileDate = DateTime.MinValue; public DateTime fileDate { get {return this._fileDate;} set {this._fileDate = value;} } private string _resultCode = String.Empty; public string resultCode { get {return this._resultCode;} set {this._resultCode = value;} } private string _disclaimer = String.Empty; public string disclaimer { get {return this._disclaimer;} set {this._disclaimer = value;} } private string _comments = String.Empty; public string comments { get {return this._comments;} set {this._comments = value;} } private string _resultDescription = String.Empty; public string resultDescription { get {return this._resultDescription;} set {this._resultDescription = value;} } private string _validationMethod = String.Empty; public string validationMethod { get {return this._validationMethod;} set {this._validationMethod = value;} } }