22 lines
403 B
C#
22 lines
403 B
C#
|
|
namespace AyAEL.APL
|
|
{
|
|
public class ItemMenuEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public int Padre { get; set; }
|
|
|
|
public int Orden { get; set; }
|
|
|
|
public string Etiqueta { get; set; }
|
|
|
|
public string Pagina { get; set; }
|
|
|
|
public string Imagen { get; set; }
|
|
|
|
public int Aplicacion { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|