using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oExceptions { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _UserID = 0; public int UserID { get {return this._UserID;} set {this._UserID = value;} } private DateTime _DateLogged = DateTime.MinValue; public DateTime DateLogged { get {return this._DateLogged;} set {this._DateLogged = value;} } private string _Exception = String.Empty; public string Exception { get {return this._Exception;} set {this._Exception = value;} } private string _ClassName = String.Empty; public string ClassName { get {return this._ClassName;} set {this._ClassName = value;} } private string _FunctionName = String.Empty; public string FunctionName { get {return this._FunctionName;} set {this._FunctionName = value;} } }