18 lines
286 B
C#
18 lines
286 B
C#
using System;
|
|
|
|
namespace AyAEL.CIP
|
|
{
|
|
public class ComentarioEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public string Comentario { get; set; }
|
|
|
|
//Fecha campo heredado
|
|
|
|
public int Cierre { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|