52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace AyAEL
|
|
{
|
|
public class AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public Nullable<int> PK{ get; set; }
|
|
|
|
public Nullable<int> FK { get; set; }
|
|
|
|
public bool ASTATE { get; set; }
|
|
|
|
|
|
//******************************************************************************************
|
|
|
|
public string Nombre { get; set; }
|
|
|
|
public string Descripcion { get; set; }
|
|
|
|
public string Prefijo { get; set; }
|
|
|
|
public int Aplicacion { get; set; }
|
|
|
|
public Nullable<DateTime> Fecha { get; set; }
|
|
|
|
public Nullable<int> Padre { get; set; }
|
|
|
|
public Nullable<bool> Activo { get; set; }
|
|
|
|
public Nullable<int> Usuario { get; set; }
|
|
|
|
public string Login { get; set; }
|
|
|
|
public Nullable<int> Rol { get; set; }
|
|
|
|
|
|
|
|
public Nullable<int> ItemMenu { get; set; }
|
|
|
|
public Nullable<int> Comando { get; set; }
|
|
|
|
public string URL { get; set; }
|
|
|
|
public int FKACTIVIDAD { get; set; }
|
|
|
|
public int ORDEN { get; set; }
|
|
#endregion
|
|
|
|
}
|
|
}
|