20 lines
362 B
C#
20 lines
362 B
C#
using System;
|
|
|
|
namespace AyAEL.EVP
|
|
{
|
|
public class AnalisisRiesgoEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public bool AnalisisRiesgo { get; set; }
|
|
|
|
public string NumeroPlano { get; set; }
|
|
|
|
public string PorcentajeReduccion { get; set; }
|
|
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|