TFS_ANTIGUO/AYA.FROPI/AyAEL/AyAEL.cs

32 lines
661 B
C#
Raw Normal View History

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
}
}