17 lines
400 B
C#
17 lines
400 B
C#
using System;
|
|
|
|
namespace AyAEL.IGP
|
|
{
|
|
public class RelacionPlanEstrategicoEL : AyAEL
|
|
{
|
|
#region Atributos
|
|
|
|
public int TemaEstrategico { get; set; }
|
|
public int Objetivo { get; set; }
|
|
public int Contribucion { get; set; }
|
|
public int InformacionGeneral { get; set; }
|
|
public int Proyecto { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|