TFS_ANTIGUO/SIGPC/AyAEL/AyAEL.cs

48 lines
851 B
C#
Raw Permalink Normal View History


using System;
namespace AyAEL
{
public class AyAEL
{
public int? PK { get; set; }
public int? FK { get; set; }
public bool ASTATE { get; set; }
public bool STATUS { get; set; }
public string Nombre { get; set; }
public string Descripcion { get; set; }
public string Prefijo { get; set; }
public int Aplicacion { get; set; }
public DateTime? Fecha { get; set; }
public int? Padre { get; set; }
public bool? Activo { get; set; }
public int? Usuario { get; set; }
public string Login { get; set; }
public int? Rol { get; set; }
public int? ItemMenu { get; set; }
public int? Comando { get; set; }
public string URL { get; set; }
public int FKACTIVIDAD { get; set; }
public int ORDEN { get; set; }
}
}