using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oUserMenuMaster { private int _primaryID = 0; public int primaryID { get {return this._primaryID;} set {this._primaryID = value;} } private int _masterMenuID = 0; public int masterMenuID { get {return this._masterMenuID;} set {this._masterMenuID = value;} } private int _userRole = 0; public int userRole { get {return this._userRole;} set {this._userRole = value;} } private int _displayOrder = 0; public int displayOrder { get {return this._displayOrder;} set {this._displayOrder = value;} } private bool _hasChildren = false; public bool hasChildren { get {return this._hasChildren;} set {this._hasChildren = value;} } private string _menuName = String.Empty; public string menuName { get {return this._menuName;} set {this._menuName = value;} } private string _navUrl = String.Empty; public string navUrl { get {return this._navUrl;} set {this._navUrl = value;} } private string _navTarget = String.Empty; public string navTarget { get {return this._navTarget;} set {this._navTarget = value;} } }