using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSFetchResponseLog { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _responsePayloadId = 0; public int responsePayloadId { get {return this._responsePayloadId;} set {this._responsePayloadId = value;} } private DateTime _processDate = DateTime.MinValue; public DateTime processDate { get {return this._processDate;} set {this._processDate = value;} } private string _feedbackType = String.Empty; public string feedbackType { get {return this._feedbackType;} set {this._feedbackType = value;} } private string _feedbackVersion = String.Empty; public string feedbackVersion { get {return this._feedbackVersion;} set {this._feedbackVersion = value;} } private string _fileDate = String.Empty; public string fileDate { get {return this._fileDate;} set {this._fileDate = value;} } private string _fileName = String.Empty; public string fileName { get {return this._fileName;} set {this._fileName = value;} } private string _moreFiles = String.Empty; public string moreFiles { get {return this._moreFiles;} set {this._moreFiles = value;} } private string _originalDataSetId = String.Empty; public string originalDataSetId { get {return this._originalDataSetId;} set {this._originalDataSetId = value;} } private string _originalSwref = String.Empty; public string originalSwref { get {return this._originalSwref;} set {this._originalSwref = value;} } private string _originalUserRef = String.Empty; public string originalUserRef { get {return this._originalUserRef;} set {this._originalUserRef = value;} } private string _status = String.Empty; public string status { get {return this._status;} set {this._status = value;} } private string _responsePayload = String.Empty; public string responsePayload { get {return this._responsePayload;} set {this._responsePayload = value;} } }