22 lines
382 B
C#
22 lines
382 B
C#
using System;
|
|
|
|
namespace AyAEL.EVP
|
|
{
|
|
public class EvaluacionFinancieraEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public string TREMA { get; set; }
|
|
|
|
public string VANE { get; set; }
|
|
|
|
public string TIRE { get; set; }
|
|
|
|
public string RBC { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|