using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAccessUsers { private int _userID = 0; public int userID { get {return this._userID;} set {this._userID = value;} } private int _userPermissionGroup = 0; public int userPermissionGroup { get {return this._userPermissionGroup;} set {this._userPermissionGroup = value;} } private int _createUser = 0; public int createUser { get {return this._createUser;} set {this._createUser = value;} } private int _modifyUser = 0; public int modifyUser { get {return this._modifyUser;} set {this._modifyUser = value;} } private int _purgeUser = 0; public int purgeUser { get {return this._purgeUser;} set {this._purgeUser = value;} } private DateTime _userLastLogin = DateTime.MinValue; public DateTime userLastLogin { get {return this._userLastLogin;} set {this._userLastLogin = value;} } private DateTime _lastPwdChange = DateTime.MinValue; public DateTime lastPwdChange { get {return this._lastPwdChange;} set {this._lastPwdChange = value;} } private DateTime _createDate = DateTime.MinValue; public DateTime createDate { get {return this._createDate;} set {this._createDate = value;} } private DateTime _modifyDate = DateTime.MinValue; public DateTime modifyDate { get {return this._modifyDate;} set {this._modifyDate = value;} } private DateTime _purgeDate = DateTime.MinValue; public DateTime purgeDate { get {return this._purgeDate;} set {this._purgeDate = value;} } private bool _forcePwdChange = false; public bool forcePwdChange { get {return this._forcePwdChange;} set {this._forcePwdChange = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isPurged = false; public bool isPurged { get {return this._isPurged;} set {this._isPurged = value;} } private string _userFirstname = String.Empty; public string userFirstname { get {return this._userFirstname;} set {this._userFirstname = value;} } private string _userLastname = String.Empty; public string userLastname { get {return this._userLastname;} set {this._userLastname = value;} } private string _userDisplayName = String.Empty; public string userDisplayName { get {return this._userDisplayName;} set {this._userDisplayName = value;} } private string _userEmailAddress = String.Empty; public string userEmailAddress { get {return this._userEmailAddress;} set {this._userEmailAddress = value;} } private string _userTelephone = String.Empty; public string userTelephone { get {return this._userTelephone;} set {this._userTelephone = value;} } private string _userMobile = String.Empty; public string userMobile { get {return this._userMobile;} set {this._userMobile = value;} } private string _loginUsername = String.Empty; public string loginUsername { get {return this._loginUsername;} set {this._loginUsername = value;} } private string _loginPassword = String.Empty; public string loginPassword { get {return this._loginPassword;} set {this._loginPassword = value;} } private string _loginSalt = String.Empty; public string loginSalt { get {return this._loginSalt;} set {this._loginSalt = value;} } }