using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSLog { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _operationType = 0; public int operationType { get {return this._operationType;} set {this._operationType = value;} } private int _roundTripElapsed = 0; public int roundTripElapsed { get {return this._roundTripElapsed;} set {this._roundTripElapsed = value;} } private DateTime _requestDate = DateTime.MinValue; public DateTime requestDate { get {return this._requestDate;} set {this._requestDate = value;} } private DateTime _responseDate = DateTime.MinValue; public DateTime responseDate { get {return this._responseDate;} set {this._responseDate = value;} } private string _status = String.Empty; public string status { get {return this._status;} set {this._status = value;} } private string _retry = String.Empty; public string retry { get {return this._retry;} set {this._retry = value;} } private string _swref = String.Empty; public string swref { get {return this._swref;} set {this._swref = value;} } private string _request = String.Empty; public string request { get {return this._request;} set {this._request = value;} } private string _response = String.Empty; public string response { get {return this._response;} set {this._response = value;} } }