using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oUserAccess { 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 bool _allowCredit = false; public bool allowCredit { get {return this._allowCredit;} set {this._allowCredit = value;} } }