20 lines
331 B
C#
20 lines
331 B
C#
using System;
|
|
|
|
namespace AyAEL.EVP
|
|
{
|
|
public class EvaluacionCostosEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public string TSD { get; set; }
|
|
|
|
public string VAC { get; set; }
|
|
|
|
public string CAE { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|