18 lines
342 B
C#
18 lines
342 B
C#
|
|
namespace AyAEL.SEG
|
|
{
|
|
public class MenuEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
//Padre se obtiene heredado
|
|
public int Orden { get; set; }
|
|
|
|
public string Etiqueta { get; set; }
|
|
|
|
public string URL { get; set; }
|
|
|
|
public string Pagina { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|