15 lines
252 B
C#
15 lines
252 B
C#
using System;
|
|
|
|
namespace AyAEL.ICP
|
|
{
|
|
public class ObservacionEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public DateTime FechaIngreso { get; set; }
|
|
|
|
public int Informacion { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|