21 lines
386 B
C#
21 lines
386 B
C#
using System;
|
|
|
|
namespace AyAEL.CVP
|
|
{
|
|
public class EtapaEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public DateTime FechaInicio { get; set; }
|
|
|
|
public DateTime FechaFin { get; set; }
|
|
|
|
public int Etapa { get; set; }
|
|
|
|
public int SituacionActual { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|