TFS_ANTIGUO/AYA.FROPI/AyAEL/AyAEL.cs
Administrador 50700fd78b Solución FROPI
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C491
2019-05-27 14:46:35 +00:00

31 lines
661 B
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 Nullable<DateTime> Fecha { get; set; }
public Nullable<int> Padre { get; set; }
public Nullable<bool> Activo { get; set; }
#endregion
}
}