using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMasterMenuChild { private int _primaryID = 0; public int primaryID { get {return this._primaryID;} set {this._primaryID = value;} } private int _masterID = 0; public int masterID { get {return this._masterID;} set {this._masterID = value;} } private int _displayOrder = 0; public int displayOrder { get {return this._displayOrder;} set {this._displayOrder = 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;} } }