19 lines
292 B
C#
19 lines
292 B
C#
using System;
|
|
|
|
namespace AyAEL.CVP
|
|
{
|
|
public class RespuestaEtapaEL : AyAEL
|
|
{
|
|
|
|
#region Atributos
|
|
|
|
public int CicloVida { get; set; }
|
|
|
|
public int Catalogo { get; set; }
|
|
|
|
public string Otro { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|