19 lines
286 B
C#
19 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
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|