using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oException { private int _Id = 0; public int Id { get { return this._Id; } set { this._Id = 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; } } }