using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAccessLogs { private int _entryID = 0; public int entryID { get {return this._entryID;} set {this._entryID = value;} } private int _logUserID = 0; public int logUserID { get {return this._logUserID;} set {this._logUserID = value;} } private int _logAccessType = 0; public int logAccessType { get {return this._logAccessType;} set {this._logAccessType = value;} } private DateTime _logDate = DateTime.MinValue; public DateTime logDate { get {return this._logDate;} set {this._logDate = value;} } private string _logDescription = String.Empty; public string logDescription { get {return this._logDescription;} set {this._logDescription = value;} } }